使用nginx的Websocket代理不能与tomcat一起使用。

时间:2013-04-22 08:21:23

标签: node.js tomcat proxy nginx websocket

我正在尝试使用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上运行这些站点但是我无法在客户端和服务器之间运行聊天。

任何帮助都将受到高度赞赏,我也可以提供节点文件,但它们是大量文件,但如果需要,我可以提供必要的文件。

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

1 个答案:

答案 0 :(得分:1)

nginx在1.3版中添加了websocket支持。因此,您必须升级到1.3.x版才能使用它。