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
This commit is contained in:
AbId KhAn 2023-12-29 17:19:09 +06:00 committed by GitHub
parent b2824366a8
commit f200acc1e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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/ {