add HTTP 1.1 support
This commit is contained in:
parent
a794d6db46
commit
175a1ab077
1 changed files with 4 additions and 0 deletions
|
@ -41,6 +41,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 }}
|
||||
|
|
Reference in a new issue