From 47bc8babc2cf90af01d16a78fa254dbede6ce6e9 Mon Sep 17 00:00:00 2001 From: Jack Levy Date: Sun, 15 Mar 2026 17:50:00 -0400 Subject: [PATCH] fix: remove debug fwd field from nginx log format Authored by: Jack Levy --- nginx/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 1816bf1..2180f89 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -19,7 +19,7 @@ http { # Log format includes real IP, referrer, and user agent log_format main '$remote_addr - [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' - '"$http_user_agent" fwd="$http_x_forwarded_for"'; + '"$http_user_agent"'; access_log /var/log/nginx/access.log main; # Use Docker's internal DNS; valid=10s forces re-resolution after container restarts.