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-http-set-status.cfg | |
parent | Initial commit. (diff) | |
download | haproxy-b46aad6df449445a9fc4aa7b32bd40005438e3f7.tar.xz haproxy-b46aad6df449445a9fc4aa7b32bd40005438e3f7.zip |
Adding upstream version 2.9.5.upstream/2.9.5
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/conf/test-http-set-status.cfg')
-rw-r--r-- | tests/conf/test-http-set-status.cfg | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/conf/test-http-set-status.cfg b/tests/conf/test-http-set-status.cfg new file mode 100644 index 0000000..0c66b16 --- /dev/null +++ b/tests/conf/test-http-set-status.cfg @@ -0,0 +1,32 @@ +global + maxconn 100 + +defaults + mode http + timeout client 10000 + timeout server 10000 + timeout connect 10000 + +# Expect HTTP/1.1 418 I'm a teapot +listen http-response-set-status-defaultreason + bind :8001 + server host 127.0.0.1:8080 + http-response set-status 418 + +# Expect HTTP/1.1 418 I'm a coffeepot +listen http-response-set-status-customreason + bind :8002 + server host 127.0.0.1:8080 + http-response set-status 418 reason "I'm a coffeepot" + +# Expect config parse fail +#listen parse-fail-string +# bind :8002 +# server host 127.0.0.1:8080 +# http-response set-status 418 reason + +# Expect config parse fail +#listen parse-fail-keyword +# bind :8002 +# server host 127.0.0.1:8080 +# http-response set-status 418 "Missing reason keyword" |