fix nginx template with Connection header to http_connection

This commit is contained in:
Alessio
2019-04-22 22:08:28 +01:00
parent bb494b69ea
commit cb16cae09b

View File

@@ -26,7 +26,7 @@ server {
proxy_pass http://{{ $.APP }}-{{ $upstream_port }};
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Connection $http_connection;
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-For $remote_addr;