haproxy/tests/conf/ext-check.cfg
Willy Tarreau d4359fd98b TESTS: move tests/*.cfg to tests/config
These are a collection of test files for a variety of features (old or
more recent). 2 or 3 files were found lying there non-committed and
were moved at the same time. A few deprecated or obsolete keywords were
updated to their recent equivalent. Many of these configurations are
made to trigger different parsing errors so it is normal that plenty
of them fail.

Now the tests directory is cleaner and easier to navigate through.
2021-04-02 10:59:29 +02:00

27 lines
451 B
INI

global
maxconn 500
external-check
stats socket /tmp/sock1 mode 666 level admin
defaults
timeout client 5s
timeout server 5s
timeout connect 5s
mode http
listen stats
bind :8888
stats uri /
listen up
bind :8001
option external-check
external-check command /bin/true
server srv 127.0.0.1:8000 check inter 1000
listen down
bind :8002
option external-check
external-check command /bin/false
server srv 127.0.0.1:8000 check inter 1000