Open litori opened 9 years ago
Currently the reverse proxy does not work with websockets (node.js).
To make the reverse proxy work with websockets, the user needs to add in these 3 lines manually.
proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade";
Source: https://www.nginx.com/blog/websocket-nginx/
@sonontse Sorry for a delayed reply.
Is this fixed over time or still needs a workaround in EE nginx config?
Currently the reverse proxy does not work with websockets (node.js).
To make the reverse proxy work with websockets, the user needs to add in these 3 lines manually.
Source: https://www.nginx.com/blog/websocket-nginx/