nginx + python + websockets

时间:2013-04-05 06:50:39

标签: python nginx websocket

如何配置nginx(最新版本,它们支持websockets)以支持WebSockets。

如何使用python运行websockets连接。

那就是我想要的:

  • 客户端使用JavaScript创建WebSocket;
  • websocket服务器脚本在python上运行;
  • 所有这些的后端都是
  • 和nginx。

任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:2)

我快速浏览了相关的changeset到Nginx,看起来你需要做的就是在你的nginx配置中设置一个代理。例如:

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上的本地连接。

希望这有帮助。