From da76459dc21b5af2449af2d36eb95226cb186ce2 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 11:35:11 +0200 Subject: Adding upstream version 2.6.12. Signed-off-by: Daniel Baumann --- tests/conf/test-url-hash.cfg | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 tests/conf/test-url-hash.cfg (limited to 'tests/conf/test-url-hash.cfg') diff --git a/tests/conf/test-url-hash.cfg b/tests/conf/test-url-hash.cfg new file mode 100644 index 0000000..53cbf4b --- /dev/null +++ b/tests/conf/test-url-hash.cfg @@ -0,0 +1,40 @@ +# This is a test configuration. +# It exercises the "url_param" balance algorithm. It looks for +# an URL parameter named "foo". + +global + maxconn 100 + log 127.0.0.1 local0 + +listen vip1 + log global + option httplog + bind :8000 + mode http + maxconn 100 + timeout client 5000 + timeout connect 5000 + timeout server 5000 + balance url_param foo + server srv1 127.0.0.1:80 + server srv2 127.0.0.1:80 + + # control activity this way + stats uri /stat + +listen vip2 + log global + option httplog + bind :8001 + mode http + maxconn 100 + timeout client 5000 + timeout connect 5000 + timeout server 5000 + balance url_param foo check_post + server srv1 127.0.0.1:80 + server srv2 127.0.0.1:80 + + # control activity this way + stats uri /stat + -- cgit v1.2.3