1

我正在尝试使用 nginx 将 websocket 代理到端口 80。我们有一个运行在端口 8080 上的 tomcat 应用程序和运行在端口 8888 上的节点应用程序。我一直在尝试使用 nginx 将它们代理到端口 80,但由于某种原因,连接没有建立。我在控制台中收到以下错误:

WebSocket 连接到 'ws://chat-local-dev.guestops.com/ws/chat?access_token=bfb83713f8abecb6c3d36d3dc74c31b9&sessionId=undefined' 失败:WebSocket 在连接建立之前关闭。

这是我的nginx配置:

    worker_processes  1;
    events {
    worker_connections  1024;
    }
    http {
    include       mime.types;
    default_type  application/octet-stream;
    sendfile        on;
    keepalive_timeout  65;
    server {
    listen       80;
    server_name  chat-local-dev.guestops.com;
    location / {
        proxy_pass http://localhost:8080;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        proxy_set_header Host $host;
     } 
     }
     server {
     listen       80;
     server_name  api-local-dev.guestops.com;
     location / {
     proxy_pass http://localhost:8881;
     proxy_http_version 1.1;
     proxy_set_header Upgrade $http_upgrade;
     proxy_set_header Connection "upgrade";
     proxy_set_header Host $host;
     }
     }
     server {
     listen       80;
     server_name  console-local-dev.guestops.com;
     location / {
     proxy_pass http://localhost:8888;
     proxy_http_version 1.1;
     proxy_set_header Upgrade $http_upgrade;
     proxy_set_header Connection "upgrade";
     proxy_set_header Host $host;
     }
     }
     }

我可以在端口 80 上运行这些站点,但是我无法在客户端和服务器之间运行聊天。

任何帮助将不胜感激,我也可以提供节点文件,但它们是一大堆文件,但如果需要,我可以提供必要的文件。

我希望我足够清楚。提前致谢!

4

1 回答 1

2

nginx 在 1.3 版本中添加了 websocket 支持。所以你必须升级到 1.3.x 版本才能使用它。

于 2013-04-22T11:20:49.403 回答