]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
[TESTS] add a file to test various connection modes
authorWilly Tarreau <w@1wt.eu>
Tue, 5 Jan 2010 13:35:03 +0000 (14:35 +0100)
committerWilly Tarreau <w@1wt.eu>
Tue, 5 Jan 2010 13:35:03 +0000 (14:35 +0100)
tests/test-connection.cfg [new file with mode: 0644]

diff --git a/tests/test-connection.cfg b/tests/test-connection.cfg
new file mode 100644 (file)
index 0000000..8d7d6e7
--- /dev/null
@@ -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
+