From d8f2232e86bfd28e12b98d76e2f209342d82cf0b Mon Sep 17 00:00:00 2001 From: Michele Porelli Date: Wed, 5 Feb 2020 19:43:00 +1100 Subject: [PATCH] fixed nginx configuration for subdomains (#11974) proxy options were missing for the root location --- source/_docs/ecosystem/nginx_subdomain.markdown | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/_docs/ecosystem/nginx_subdomain.markdown b/source/_docs/ecosystem/nginx_subdomain.markdown index c749b49d5ee..2d4ba151994 100644 --- a/source/_docs/ecosystem/nginx_subdomain.markdown +++ b/source/_docs/ecosystem/nginx_subdomain.markdown @@ -85,6 +85,10 @@ server { location / { proxy_pass http://localhost:8124; proxy_set_header Host $host; + + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "upgrade"; } location /api/websocket {