blob: bfc0ec9d62a055e78eeea0de598282706bfe1d1a [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-fe.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 *:8001
24 stats uri /
25 stats admin if TRUE
26 stats refresh 10s
27
28frontend ot-test-fe-frontend
29 bind *:10080
30 mode http
31 default_backend servers-backend
32
33 filter opentracing id ot-test-fe config fe/ot.cfg
34
35backend servers-backend
36 mode http
37 server server-1 127.0.0.1:11080