diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:35:11 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:35:11 +0000 |
commit | da76459dc21b5af2449af2d36eb95226cb186ce2 (patch) | |
tree | 542ebb3c1e796fac2742495b8437331727bbbfa0 /tests/conf/test-param-hash.cfg | |
parent | Initial commit. (diff) | |
download | haproxy-upstream/2.6.12.tar.xz haproxy-upstream/2.6.12.zip |
Adding upstream version 2.6.12.upstream/2.6.12upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | tests/conf/test-param-hash.cfg | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/conf/test-param-hash.cfg b/tests/conf/test-param-hash.cfg new file mode 100644 index 0000000..f976a12 --- /dev/null +++ b/tests/conf/test-param-hash.cfg @@ -0,0 +1,23 @@ +# 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 + 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 + |