fix: use stdout instead of /dev/stdout

`/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
This commit is contained in:
Jose Diaz-Gonzalez
2023-08-20 21:50:01 -04:00
parent 075c994f7c
commit bef26ef6d6
+1 -1
View File
@@ -11,7 +11,7 @@ http {
types_hash_max_size 2048; types_hash_max_size 2048;
include mime.types; include mime.types;
charset UTF-8; charset UTF-8;
access_log /dev/stdout; access_log stdout;
server { server {
listen {{ $.PORT }}; listen {{ $.PORT }};
server_name _; server_name _;