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:
parent
6024b7bdf3
commit
7c0df7fd7c
1 changed files with 5 additions and 5 deletions
10
nginx.tmpl
10
nginx.tmpl
|
@ -49,12 +49,12 @@ server {
|
||||||
access_log /proc/self/fd/1;
|
access_log /proc/self/fd/1;
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
proxy_pass http://{{ $host }};
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
include /etc/nginx/proxy_params;
|
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_pass http://{{ $host }};
|
||||||
proxy_http_version 1.1;
|
|
||||||
proxy_set_header Connection "";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
Loading…
Reference in a new issue