43 lines
883 B
INI
43 lines
883 B
INI
|
# This is a test configuration.
|
||
|
# It is used to check the various connection modes
|
||
|
|
||
|
global
|
||
|
maxconn 100
|
||
|
|
||
|
defaults
|
||
|
mode http
|
||
|
timeout client 10000
|
||
|
timeout server 10000
|
||
|
timeout connect 10000
|
||
|
balance roundrobin
|
||
|
|
||
|
listen httpclose
|
||
|
option httpclose
|
||
|
bind :8001
|
||
|
server srv 127.0.0.1:8080
|
||
|
reqadd X-request:\ mode=httpclose
|
||
|
rspadd X-response:\ mode=httpclose
|
||
|
|
||
|
listen server-close
|
||
|
option http-server-close
|
||
|
bind :8002
|
||
|
server srv 127.0.0.1:8080
|
||
|
reqadd X-request:\ mode=server-close
|
||
|
rspadd X-response:\ mode=server-close
|
||
|
|
||
|
listen httpclose_server-close
|
||
|
option httpclose
|
||
|
option http-server-close
|
||
|
bind :8003
|
||
|
server srv 127.0.0.1:8080
|
||
|
reqadd X-request:\ mode=httpclose+server-close
|
||
|
rspadd X-response:\ mode=httpclose+server-close
|
||
|
|
||
|
listen forceclose
|
||
|
option forceclose
|
||
|
bind :8004
|
||
|
server srv 127.0.0.1:8080
|
||
|
reqadd X-request:\ mode=forceclose
|
||
|
rspadd X-response:\ mode=forceclose
|
||
|
|