无法在 nginx 中使用 websocket

无法在 nginx 中使用 websocket

我将其用作Activemq代理,客户端将Paho js发送 websocket 请求(ws 协议)。服务器上一切正常,但当服务器开始将 nginx 设置为代理时,客户端无法连接到服务器(但我可以连接到 Activemq UI web)。我的 nginx 设置是:

map $http_upgrade $connection_upgrade {
     default upgrade;
     '' close;
}
server {
     listen 16614;
     server_name mq.mysite.com;
     access_log /var/log/docker/nginx/access_activemq.log activemq_custom;

     location / {
           proxy_pass  http://192.168.10.13:16614; 
           proxy_http_version 1.1;
           proxy_set_header Upgrade $http_upgrade;
           proxy_set_header Connection $connection_upgrade;

     }
}

我使用 80 端口来监听 ActiveMQ webUI,使用 16614 来监听 ws 协议。

是否还缺少什么步骤?

答案1

问题来自 Docker,nginx -s reload命令有时无法正常工作,我必须重新启动 Nginx 容器。

相关内容