blob: a8d971c07818e167f35edd3b06b51dd6b90e43b0 [file] [log] [blame]
Willy Tarreaufe944602007-10-25 10:34:16 +02001# This is a test configuration.
2# Its purpose is simply to emit logs on the loopback in order to verify
3# that the time is correct. To be used with tcpdump on lo, or with
4# "strace -s100 -esendto".
5
6global
7 log 127.0.0.1:514 local0
8
9defaults
10 balance uri
11 contimeout 5000
12 clitimeout 5000
13 srvtimeout 5000
14
15listen http
16 log global
17 log 127.0.0.1:514 local0
18 option httplog
19 mode http
20 bind :8000
21 option dontlognull
22 balance roundrobin
23 server tux 127.0.0.1:65535 check inter 1000
24