Fix Connection header in API nginx proxy

This commit is contained in:
Fergal Moran
2018-03-29 18:01:37 +01:00
parent a9618262ae
commit 227be43761

View File

@@ -62,8 +62,8 @@ server {
proxy_pass http://api:5000/;
proxy_http_version 1.1;
proxy_set_header Connection $http_connection;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}