> Please see full nginx.conf. I do it like that:
>        location /websocket-tunnel {
>            return 404;
>            error_page 500 501 502 503 504 505 506 507 508 509 510 511 598 599 
>= /404.html;
>            proxy_buffering off;
>        }

Hi alex,

I think you must also set the connection upgrade headers for this location when 
using websockets - like this:
            proxy_set_header Upgrade $http_upgrade;
            proxy_set_header Connection $connection_upgrade;

regards
 christoph

Reply via email to