So im trying to set up an image that uses websockets but i cant get it working, i keep getting a failed: Error during WebSocket handshake: Unexpected response code: 200, error
i tried adding
location /socket.io/ {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
into the aditional nginx directives and turned off proxy mode, but that doesnt work.
how do i get it working?
i tried adding
location /socket.io/ {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
into the aditional nginx directives and turned off proxy mode, but that doesnt work.
how do i get it working?