From 6a65793579d2d6e3f0abf9ca4ec8d23c9367b236 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 30 Nov 2025 02:03:59 -0500 Subject: [PATCH] Enable nginx request logging MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Changed error_log level from warn to info - Removed access_log off from static files 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- nginx.conf | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index b746196..6c7f5a3 100644 --- a/nginx.conf +++ b/nginx.conf @@ -1,5 +1,5 @@ worker_processes auto; -error_log /dev/stderr warn; +error_log /dev/stderr info; pid /tmp/nginx.pid; events { @@ -53,7 +53,6 @@ http { alias /app/kjvstudy_org/static/; expires 1y; add_header Cache-Control "public, immutable"; - access_log off; } # Service worker - special cache headers