我正在尝试使用 nginx 代理 WebSocket + HTTP 流量。
我读过这个: http: //nginx.org/en/docs/http/websocket.html
我的配置看起来像:
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
gzip on;
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
listen 80;
server_name ourapp.com;
location / {
proxy_pass http://127.0.0.1:100;
proxy_http_version 1.1;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
}
}
}
我有两个问题:
1) 连接每分钟关闭一次。
2) 我想在同一个端口上同时运行 HTTP 和 WS。该应用程序在本地运行良好,但如果我尝试将 HTTP 和 WS 放在同一个端口上并设置这个 nginx 代理,我会得到:
WebSocket 连接到“ws://ourapp.com/ws”失败:意外响应代码:200
加载应用程序 (HTTP) 似乎工作正常,但 WebSocket 连接失败。