我正在使用Nginx 1.10.1
我的APP来平衡连接Websocket
。
例如App A
(多进程)通过 建立Websocket
到 的连接B1
,B2
从而Nginx
实现连接平衡。
在使用它时,有时即使我的应用程序通过发送消息Websocket
,端点(B1
或B2
)也不会收到任何消息,并且一段时间后Nginx
会打印错误日志消息recv() failed (110: Connection timed out) while proxying upgraded connection
。
下面是我的配置Nginx
。
为什么会发生这种情况?如何解决?网络连接超时之类的问题会导致这种情况吗?
worker_processes 2;
error_log /app_log/sangmin/nginx/error.log info;
pid /app_log/sangmin/nginx/nginx.pid;
events {
worker_connections 1024;
use epoll;
}
http {
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
client_body_buffer_size 5m;
access_log /app_log/sangmin/nginx/access.log;
upstream s2s_host{
hash $remote_port;
server 10.2.150.211:8080 max_fails=0 fail_timeout=10s;server 10.2.150.212:8080 max_fails=0 fail_timeout=10s;
}
server {
listen 10.2.14.195:10002;
location = /s2s {
proxy_read_timeout 365h;
proxy_send_timeout 365h;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_pass http://s2s_host;
}
}
}