blob: c225a2f3271803bfe9f4df5c57b7403fdd3cf8ac [file] [log] [blame]
Miroslav Zagorac70230c62020-12-09 16:54:31 +01001global
2# nbthread 1
3 maxconn 5000
4 hard-stop-after 10s
5# log localhost:514 local7 debug
6# debug
7 stats socket /tmp/haproxy-be.sock mode 666 level admin
8
9defaults
10 log global
11 mode http
12 option httplog
13 option dontlognull
14 option httpclose
15 retries 3
16 maxconn 4000
17 timeout connect 5000
18 timeout client 50000
19 timeout server 50000
20
21listen stats
22 mode http
23 bind *:8002
24 stats uri /
25 stats admin if TRUE
26 stats refresh 10s
27
28frontend ot-test-be-frontend
29 bind *:11080
30 mode http
31 default_backend servers-backend
32
33 filter opentracing id ot-test-be config be/ot.cfg
34
35backend servers-backend
36 mode http
37 server server-1 127.0.0.1:8000