We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfba9bb commit 80e6082Copy full SHA for 80e6082
1 file changed
e2e/tests/defaults/data/haproxy.cfg
@@ -1,4 +1,33 @@
1
+# _version=42
2
+
3
+global
4
+ log 127.0.0.1 local2
5
+ chroot /var/lib/haproxy
6
+ pidfile /var/run/haproxy.pid
7
+ maxconn 4000
8
+ user haproxy
9
+ group haproxy
10
+ stats socket /var/lib/haproxy/stats level admin
11
12
+defaults mydefaults
13
+ mode http
14
+ log global
15
+ option httplog
16
+ option dontlognull
17
+ option http-server-close
18
+ option forwardfor except 127.0.0.0/8
19
+ option redispatch
20
+ retries 3
21
+ timeout http-request 10s
22
+ timeout queue 1m
23
+ timeout connect 10s
24
+ timeout client 1m
25
+ timeout server 1m
26
+ timeout http-keep-alive 10s
27
+ timeout check 10s
28
+ maxconn 3000
29
30
defaults unnamed_defaults_1
- mode http
- balance roundrobin
- timeout client 30000
31
32
+ balance roundrobin
33
+ timeout client 30000
0 commit comments