Skip to content

Commit

Permalink
fix: use stdout instead of /dev/stdout
Browse files Browse the repository at this point in the history
`/dev/stdout` appears to have permissions issues, while the comments on this stackoverflow post[1] appear to indicate that stdout should work fine.

[1] https://stackoverflow.com/a/23328458/1515875
  • Loading branch information
josegonzalez authored Aug 20, 2023
1 parent b36d67a commit 094e3ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conf/app-nginx.conf.sigil
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ http {
types_hash_max_size 2048;
include mime.types;
charset UTF-8;
access_log /dev/stdout;
access_log stdout;
server {
listen {{ $.PORT }};
server_name _;
Expand Down

0 comments on commit 094e3ed

Please sign in to comment.