使用 nginx 的 Websocket 代理不适用于 tomcat。

Posted

技术标签:

【中文标题】使用 nginx 的 Websocket 代理不适用于 tomcat。【英文标题】:Websocket proxy using nginx does not work with tomcat. 【发布时间】:2013-04-22 08:21:23 【问题描述】:

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

与“ws://chat-local-dev.guestops.com/ws/chat?access_token=bfb83713f8abecb6c3d36d3dc74c31b9&sessionId=undefined”的 WebSocket 连接失败: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.3.15 版本 og nginx,它就像魔法一样工作! 【参考方案1】:

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

【讨论】:

以上是关于使用 nginx 的 Websocket 代理不适用于 tomcat。的主要内容,如果未能解决你的问题,请参考以下文章

使用 nginx 作为 websocket 连接的代理

websocket使用nginx作为反向代理

无法使用 Nginx 反向代理连接到 Websocket 服务器

Nginx反向代理websocket配置实例

docker 中的 nginx + websocket 代理 + Ratchet

nginx websocket 代理