diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 12:18:05 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 12:18:05 +0000 |
commit | b46aad6df449445a9fc4aa7b32bd40005438e3f7 (patch) | |
tree | 751aa858ca01f35de800164516b298887382919d /tests/conf/test-valid-names.cfg | |
parent | Initial commit. (diff) | |
download | haproxy-4ab0e6324476345d1b93a1acd3eb15c0b8cfaf40.tar.xz haproxy-4ab0e6324476345d1b93a1acd3eb15c0b8cfaf40.zip |
Adding upstream version 2.9.5.upstream/2.9.5
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | tests/conf/test-valid-names.cfg | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/conf/test-valid-names.cfg b/tests/conf/test-valid-names.cfg new file mode 100644 index 0000000..b339d1c --- /dev/null +++ b/tests/conf/test-valid-names.cfg @@ -0,0 +1,37 @@ +# This is a test configuration. +# It checks instances, servers and acl names. + +listen valid_listen1 + bind :8000 + timeout client 5000 + timeout connect 5000 + timeout server 5000 + balance roundrobin + server srv1 127.0.0.1:80 + +frontend www.valid-frontend.net:80 + bind :8001 + timeout client 5000 + acl host_www.valid-frontend.net:80 hdr(host) www.valid-frontend.net + +backend Valid_BK-1 + timeout connect 5000 + timeout server 5000 + balance roundrobin + server bk1_srv-1:80 127.0.0.1:80 + +frontend www.test-frontend.net:8002/invalid + bind :8002 + timeout client 5000 + +frontend ft1_acl + bind :8003 + timeout client 5000 + acl invalid!name url / + +backend bk2_srv + timeout connect 5000 + timeout server 5000 + balance roundrobin + server bk2/srv-1 127.0.0.1:80 + |