blob: 9d40db96af4bfcd962322bf4a55eedede426849d [file] [log] [blame]
Miroslav Zagorac70230c62020-12-09 16:54:31 +01001global
2 stats socket /tmp/haproxy.sock mode 666 level admin
3
4defaults
5 log global
6 mode http
7 option httplog
8 option dontlognull
9 option httpclose
10 timeout connect 5000
11 timeout client 50000
12 timeout server 50000
13
14listen stats
15 mode http
16 bind *:8001
17 stats uri /
18 stats admin if TRUE
19 stats refresh 10s
20
21frontend ot-test-empty
22 bind *:10080
23 mode http
24 default_backend servers-backend
25
26 filter opentracing id ot-test-empty config empty/ot.cfg
27
28backend servers-backend
29 mode http
30 server server-1 127.0.0.1:8000