]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
[TESTS] add a simple test for the status page
authorWilly Tarreau <w@1wt.eu>
Thu, 25 Oct 2007 18:17:40 +0000 (20:17 +0200)
committerWilly Tarreau <w@1wt.eu>
Thu, 25 Oct 2007 18:17:40 +0000 (20:17 +0200)
tests/test-status.cfg [new file with mode: 0644]

diff --git a/tests/test-status.cfg b/tests/test-status.cfg
new file mode 100644 (file)
index 0000000..cfb2294
--- /dev/null
@@ -0,0 +1,24 @@
+# This is a test configuration.
+# It presents an active, a failed server, and a backup server in the
+# stats page. Connect to port 8000 to consult status.
+
+
+global
+       maxconn         10000
+       #daemon
+       #nbproc         2
+
+listen  to-pcw
+        mode            http
+        bind           :8000
+        clitimeout      15000
+        srvtimeout      15000
+        contimeout      15000
+        maxconn 40000
+       option httpclose
+       balance roundrobin
+       server srv1 127.0.0.1:6000 check inter 1000 maxconn 1000 maxqueue 100
+       server srv2 127.0.0.1:65535 check inter 1000 maxqueue 100
+       server srv3 127.0.0.1:65535 backup
+       stats uri /
+