I have upgraded my node.js app to work with the latest socket.io module. However, now only Firefox can connect, Chrome and Safari give this error: Error during WebSocket handshake: 'Connection' header value is not 'Upgrade'
|
|
Nginx is not compatible (out of the box) with HTTP 1.1, which is required for WebSockets. You will need to patch it (something I couldn't help you with, too much trouble) or you could use a node.js only stack. I use node-http-proxy. |
|||||
|
|
Yep, it's totally nginx - I had everything working fine, changed some nonessential stuff and then it wouldn't work. It's only after reading this that I realised that I'd stopped entering the port in the URL and thus was falling under nginx's proxying. Added the port, worked immediately. |
|||
|
|
|
This might make a better comment than answer, but I'm disallowed to comment because of my poor reputation. I only get this problem if I try to go through an Nginx proxy. It works great though if I connect directly on the port where my app is running. If you're using Nginx, try bypassing the proxy and see if it works. |
|||
|
|