nginx proxy websocket to multi nodes

2014-09-22 Thread linbo
I use nginx as proxy server, backend are socketio services. Follow the [document](http://socket.io/docs/using-multiple-nodes/) , nginx configuration, ip_hash instruction that indicates the connections will be sticky. upstream socketio { ip_hash; server server1:3000; s

Re: NGINX proxy websocket

2013-03-13 Thread Ruslan Ermilov
On Wed, Mar 13, 2013 at 10:59:38PM +, Hazrat Shah wrote: >I am using the Nginx v1.3.14 server proxy. I am sending the Websocket >HTTP connection request "CONNECT HostName:Port HTTP/1.1" packet to the >proxy from the client. It responds with an http-alt ack packet. How can >I

NGINX proxy websocket

2013-03-13 Thread Hazrat Shah
I am using the Nginx v1.3.14 server proxy. I am sending the Websocket HTTP connection request "CONNECT HostName:Port HTTP/1.1" packet to the proxy from the client. It responds with an http-alt ack packet. How can I configure the proxy to return the HTTP reply "HTTP/1.1 200"? I also do not se