nginx配置如下:
location /wss { proxy_pass http://127.0.0.1:86; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_set_header X-Real-IP $remote_addr; }
nginx会关闭60秒不通讯的连接。解决方法是客户端定时50秒发点数据给服务端
谢谢回复,proxy_read_timeout 600s;但是还是断了
抱歉各位,没问题,是以前的demo被我拿来测试,导致自己的服务断开
我的配置如下,希望可以帮到别人:
location /wss { proxy_pass http://127.0.0.1:86; proxy_http_version 1.1; proxy_connect_timeout 4s; #配置点1 proxy_read_timeout 60s; #配置点2 proxy_send_timeout 12s; #配置点3 proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; }
nginx会关闭60秒不通讯的连接。解决方法是客户端定时50秒发点数据给服务端
谢谢回复,proxy_read_timeout 600s;但是还是断了
抱歉各位,没问题,是以前的demo被我拿来测试,导致自己的服务断开
我的配置如下,希望可以帮到别人: