EasyEngine / feature-requests

A repo to track all feature requests on EasyEngine project using issue tracker.
5 stars 2 forks source link

Provide websocket option for Nginx Reverse Proxy #45

Open litori opened 9 years ago

litori commented 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/

rahul286 commented 6 years ago

@sonontse Sorry for a delayed reply.

Is this fixed over time or still needs a workaround in EE nginx config?