diff --git a/nginx.tmpl b/nginx.tmpl index 81062fd..1d62622 100644 --- a/nginx.tmpl +++ b/nginx.tmpl @@ -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 }}