Miroslav Zagorac | 70230c6 | 2020-12-09 16:54:31 +0100 | [diff] [blame] | 1 | global |
2 | stats socket /tmp/haproxy.sock mode 666 level admin | ||||
3 | |||||
4 | defaults | ||||
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 | |||||
14 | listen stats | ||||
15 | mode http | ||||
16 | bind *:8001 | ||||
17 | stats uri / | ||||
18 | stats admin if TRUE | ||||
19 | stats refresh 10s | ||||
20 | |||||
21 | frontend 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 | |||||
28 | backend servers-backend | ||||
29 | mode http | ||||
30 | server server-1 127.0.0.1:8000 |