From f200acc1e8ad598e694d96c5e3bfa7aff69fe39a Mon Sep 17 00:00:00 2001 From: AbId KhAn Date: Fri, 29 Dec 2023 17:19:09 +0600 Subject: [PATCH] fix websocket connection issue in docker makeplane/plane#3195 (#3196) * fix websocket connection issue in docker makeplane/plane#3195 * fix websocket connection issue for local env with removing from the prod nginx conf template makeplane/plane#319 --- nginx/nginx.conf.dev | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nginx/nginx.conf.dev b/nginx/nginx.conf.dev index c78893f9fe3..182fc4d83f0 100644 --- a/nginx/nginx.conf.dev +++ b/nginx/nginx.conf.dev @@ -18,6 +18,9 @@ http { location / { proxy_pass http://web:3000/; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "upgrade"; } location /api/ {