File tree 1 file changed +22
-5
lines changed
images/router/haproxy/conf
1 file changed +22
-5
lines changed Original file line number Diff line number Diff line change @@ -39,17 +39,34 @@ defaults
39
39
option httplog
40
40
log global
41
41
{{ end }}
42
+
43
+ {{ if (matchPattern "[1-9][0-9]*(us|ms|s|m|h|d)?" (env "ROUTER_DEFAULT_CONNECT_TIMEOUT" "")) }}
44
+ timeout connect {{env "ROUTER_DEFAULT_CONNECT_TIMEOUT" "5s"}}
45
+ {{ else }}
46
+ timeout connect 5s
47
+ {{ end }}
48
+ {{ if (matchPattern "[1-9][0-9]*(us|ms|s|m|h|d)?" (env "ROUTER_DEFAULT_CLIENT_TIMEOUT" "")) }}
49
+ timeout client {{env "ROUTER_DEFAULT_CLIENT_TIMEOUT" "30s"}}
50
+ {{ else }}
51
+ timeout connect 30s
52
+ {{ end }}
53
+ {{ if (matchPattern "[1-9][0-9]*(us|ms|s|m|h|d)?" (env "ROUTER_DEFAULT_SERVER_TIMEOUT" "")) }}
54
+ timeout server {{env "ROUTER_DEFAULT_SERVER_TIMEOUT" "30s"}}
55
+ {{ else }}
56
+ timeout server 30s
57
+ {{ end }}
42
58
{{ if (matchPattern "[1-9][0-9]*(us|ms|s|m|h|d)?" (env "ROUTER_SLOWLORIS_TIMEOUT" "")) }}
43
- timeout http-request {{env "ROUTER_SLOWLORIS_TIMEOUT" "" }}
59
+ timeout http-request {{env "ROUTER_SLOWLORIS_TIMEOUT" "10s " }}
44
60
{{ else }}
45
61
timeout http-request 10s
46
62
{{ end }}
47
- timeout http-keep-alive 30s
48
- timeout connect 5s
49
- timeout client 30s
50
- timeout server 30s
63
+
51
64
# Long timeout for WebSocket connections.
65
+ {{ if (matchPattern "[1-9][0-9]*(us|ms|s|m|h|d)?" (env "ROUTER_DEFAULT_TUNNEL_TIMEOUT" "")) }}
66
+ timeout tunnel {{env "ROUTER_DEFAULT_TUNNEL_TIMEOUT" "1h" }}
67
+ {{ else }}
52
68
timeout tunnel 1h
69
+ {{ end }}
53
70
54
71
{{ if (gt .StatsPort 0) }}
55
72
listen stats :{{.StatsPort}}
You can’t perform that action at this time.
0 commit comments