File tree Expand file tree Collapse file tree 3 files changed +34
-2
lines changed
tests/process_manager/data Expand file tree Collapse file tree 3 files changed +34
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ set -eo pipefail
18
18
19
19
export BASE_PATH=" /v3"
20
20
21
- HAPROXY_VERSION=${HAPROXY_VERSION:- 2.9 }
21
+ HAPROXY_VERSION=${HAPROXY_VERSION:- 3.2 }
22
22
DOCKER_BASE_IMAGE=" ${DOCKER_BASE_IMAGE:- haproxytech/ haproxy-debian} :${HAPROXY_VERSION} "
23
23
DOCKER_CONTAINER_NAME=" dataplaneapi-e2e"
24
24
export DOCKER_CONTAINER_NAME
Original file line number Diff line number Diff line change 1
1
# _version=42
2
2
3
3
global
4
- expose-deprecated-directives
5
4
master-worker
6
5
log 127.0.0.1 local2
7
6
chroot /var/lib/haproxy
Original file line number Diff line number Diff line change
1
+ # _version=42
2
+
3
+ global
4
+ expose-deprecated-directives
5
+ master-worker
6
+ log 127.0.0.1 local2
7
+ chroot /var/lib/haproxy
8
+ pidfile /var/run/haproxy.pid
9
+ maxconn 4000
10
+ user haproxy
11
+ group haproxy
12
+ stats socket /var/lib/haproxy/stats level admin
13
+
14
+ defaults mydefaults
15
+ mode http
16
+ log global
17
+ option httplog
18
+ option dontlognull
19
+ option http-server-close
20
+ option forwardfor except 127.0.0.0 /8
21
+ option redispatch
22
+ retries 3
23
+ timeout http-request 10s
24
+ timeout queue 1m
25
+ timeout connect 10s
26
+ timeout client 1m
27
+ timeout server 1m
28
+ timeout http-keep-alive 10s
29
+ timeout check 10s
30
+ maxconn 3000
31
+
32
+ program echo
33
+ command echo "Hello, World!"
You can’t perform that action at this time.
0 commit comments