Forward X-Forwarded-Proto to containers

This ensures that containers checking for ssl (when behind an ELB) will get correct response
This commit is contained in:
Andrew Vos 2014-09-10 17:44:16 +01:00
parent 6024b7bdf3
commit 7c0df7fd7c

View file

@ -49,12 +49,12 @@ server {
access_log /proc/self/fd/1;
location / {
proxy_pass http://{{ $host }};
include /etc/nginx/proxy_params;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect false;
# HTTP 1.1 support
proxy_http_version 1.1;
proxy_set_header Connection "";
proxy_pass http://{{ $host }};
}
}
{{ end }}