fix: remove debug fwd field from nginx log format

Authored by: Jack Levy
This commit is contained in:
Jack Levy
2026-03-15 17:50:00 -04:00
parent 63b95b4dcd
commit 47bc8babc2

View File

@@ -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.