Merge pull request #11 from thomasleveil/patch-1

add HTTP 1.1 support
This commit is contained in:
Jason Wilder 2014-06-03 16:04:44 -06:00
commit 95d4f67a59

View file

@ -46,6 +46,10 @@ server {
location / {
proxy_pass http://{{ $host }};
include /etc/nginx/proxy_params;
# HTTP 1.1 support
proxy_http_version 1.1;
proxy_set_header Connection "";
}
}
{{ end }}