没有代理的Tornado WebSocket服务器

时间:2013-03-09 22:51:59

标签: nginx websocket tornado

我有一个龙卷风websocket服务器,可以在我的本地机器上正常工作。但是当我将它部署到Web服务器并使用supervisord运行时,我无法连接到javascript websockets。 我试图在防火墙中打开端口,但不起作用。 我还尝试使用nginx代理(和tcp模块)

tcp {
    upstream websockets {
        server abc.de.efg.hij:23581;
        check interval=3000 rise=2 fall=5 timeout=1000;
    }

    server {
        listen abc.de.efg.hij:45645;
        server_name _;

        tcp_nodelay on;
        proxy_pass websockets;
    }
}

但也不起作用。 什么错了?

1 个答案:

答案 0 :(得分:0)

您需要为websocket添加额外的“位置”部分,以确保正确传递升级标头:

location /YOUR_SOCKET_ENDPOINT/ {
    proxy_pass http://backend;
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
}

文档在这里:http://nginx.org/en/docs/http/websocket.html