haproxy/tests/conf/test-backlog.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

23 lines
473 B
INI

# This is a test configuration.
# It is used to check that the backlog queue works as expected.
global
maxconn 200
stats timeout 3s
frontend backlog_def
mode http
timeout client 15s
maxconn 100
bind :8000
option httpclose
frontend backlog_max
mode http
timeout client 15s
maxconn 100
backlog 100000
bind :8001
option httpclose