File tree Expand file tree Collapse file tree 1 file changed +32
-3
lines changed Expand file tree Collapse file tree 1 file changed +32
-3
lines changed Original file line number Diff line number Diff line change
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
+
1
30
defaults unnamed_defaults_1
2
- mode http
3
- balance roundrobin
4
- timeout client 30000
31
+ mode http
32
+ balance roundrobin
33
+ timeout client 30000
You can’t perform that action at this time.
0 commit comments