From bef26ef6d6b3bbf7075384a6f9f6fd94975a5454 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sun, 20 Aug 2023 19:48:36 -0400 Subject: [PATCH] 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 --- conf/app-nginx.conf.sigil | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/app-nginx.conf.sigil b/conf/app-nginx.conf.sigil index 91c6447..93607ae 100644 --- a/conf/app-nginx.conf.sigil +++ b/conf/app-nginx.conf.sigil @@ -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 _;