我正在使用带有龙卷风的Haproxy作为websocket。如果我直接连接到龙卷风我的连接工作正常,但如果我使用HAproxy与下面的配置然后连接50秒后关闭。 我的Haproxy配置文件在下面。
global
daemon
maxconn 4032
pidfile /var/run/haproxy.pid
defaults
mode http
timeout connect 5000ms
timeout client 50000ms
timeout server 50000ms
option http-server-close
maxconn 4032
frontend http-in
bind *:80
acl is_websocket hdr_end(host) -i WebSocket
use_backend servers if is_websocket
default_backend servers
option redispatch
option http-server-close
maxconn 2000
contimeout 500000
clitimeout 500000
srvtimeout 500000
contimeout 500000
timeout contimeout 500000
timeout connect 500000
backend servers
server server1 127.0.0.1:8886 maxconn 4032
现在通过使用上面的配置,我的websocket连接在50秒后自动丢失。我想做持久连接,所以有没有办法在HAproxy中建立连接?
答案 0 :(得分:6)
为了更好地理解HAProxy如何与websocket一起使用,您应该阅读本文: https://www.haproxy.com/blog/websockets-load-balancing-with-haproxy/
注意关闭超时是个坏主意......
巴普蒂斯特
答案 1 :(得分:2)
我找到了答案,
我更改了timeout connect 0ms, timeout client 0ms, timeout server 0ms
部分中的defaults
,然后我的连接是持久连接,因为如果我给出值0,那么它将是无限连接超时值。
我的最终工作配置如下,
global
daemon
maxconn 4032
pidfile /var/run/haproxy.pid
defaults
mode http
timeout connect 0ms
timeout client 0ms
timeout server 0ms
option http-server-close
maxconn 4032
frontend http-in
bind *:80
acl is_websocket hdr_end(host) -i WebSocket
use_backend servers if is_websocket
default_backend servers
option redispatch
option http-server-close
maxconn 2000
contimeout 500000
clitimeout 500000
srvtimeout 500000
contimeout 500000
timeout contimeout 500000
timeout connect 500000
timeout client 500000
backend servers
server server1 127.0.0.1:8886 maxconn 4032