mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-13 06:54:37 +00:00
d4359fd98b
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.
23 lines
473 B
INI
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
|
|
|