blob: bc4a71e32165dc556cf6e0d6a20c6c65085972f8 [file] [log] [blame]
Willy Tarreauc73ce2b2008-01-06 10:55:10 +01001# This is a test configuration.
2# It is used to check that the backlog queue works as expected.
3
4global
5 maxconn 200
6 stats timeout 3s
7
8frontend backlog_def
9 mode http
10 timeout client 15s
11 maxconn 100
12 bind :8000
13 option httpclose
14
15frontend backlog_max
16 mode http
17 timeout client 15s
18 maxconn 100
19 backlog 100000
20 bind :8001
21 option httpclose
22