Enable full debuggable logs on non-proxy protocol nginx config

Fixes #2037
This commit is contained in:
Joseph Schorr 2016-11-28 16:29:35 -05:00
parent b4ace1dd29
commit 2726405ea5
3 changed files with 10 additions and 6 deletions

View file

@ -30,6 +30,8 @@ http {
# This header must be set only for HTTPS
add_header Strict-Transport-Security "max-age=63072000; preload";
access_log /dev/stdout lb_logs;
}
server {
@ -43,6 +45,6 @@ http {
real_ip_header proxy_protocol;
access_log /dev/stdout lb_pp;
access_log /dev/stdout lb_logs;
}
}