From f5d29e35155df616308005efba2f82a1508f562c Mon Sep 17 00:00:00 2001 From: Elijah Duffy Date: Mon, 8 Dec 2025 02:51:08 -0800 Subject: [PATCH] nginx: direct error & access logs to stderr and stdout respectively --- nginx/nginx.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index bc565af..78535b6 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -1,3 +1,6 @@ +error_log /dev/stderr warn; +access_log /dev/stdout; + server { listen 80; listen [::]:80;