如何配置nginx(最新版本,据说支持websockets)来支持websockets
如何使用python运行websockets连接
那就是我想要的:
- 客户端使用JavaScript创建WebSocket; websocket server script在python上运行
- 和nginx的后端。
我快速浏览了一下Nginx的相关更改集,看起来你需要做的就是在Nginx配置中设置一个代理来开始处理websocket请求。例如:
upstream pythonserver {
server localhost:5000;
}
server {
// normal server config stuff...
location /some/uri/here {
// Minimum required settings to proxy websocket connections
proxy_pass http://pythonserver;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
// Other settings for this location
}
}
这个小配置片段将把传入的websocket流量代理到Python应用服务器,在示例中假设侦听端口5000上的本地连接。