Nginx configuration for the Tornado websocket demo?

五迷三道 提交于 2019-11-30 18:47:07

问题


Can someone please provide me with Nginx configuration for the Tornado websocket chat demo? the demo is located under /tornado/demos/websocket...


回答1:


A config like this will work:

events {
    worker_connections  1024;
}

http {
    upstream chatserver {
        server 127.0.0.1:8888;
    }

    server {
        # Requires root access.
        listen       80;

        # WebSocket.
        location /chatsocket {
            proxy_pass http://chatserver;
            proxy_http_version 1.1;
            proxy_set_header Upgrade $http_upgrade;
            proxy_set_header Connection "upgrade";
        }

        location / {
            proxy_pass http://chatserver;
        }
    }
}

You'll need to run Nginx as root in order to listen on port 80. Now you can visit "localhost" with your browser. More info on Nginx and websockets here.



来源:https://stackoverflow.com/questions/22367215/nginx-configuration-for-the-tornado-websocket-demo

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!