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