mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-07 23:56:57 +02:00
[TESTS] add a file to test various connection modes
This commit is contained in:
parent
0dfdf19b64
commit
f1f0683510
42
tests/test-connection.cfg
Normal file
42
tests/test-connection.cfg
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
# 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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user