File: test-http-set-status.cfg

package info (click to toggle)
haproxy 1.7.5-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 8,364 kB
  • ctags: 8,494
  • sloc: ansic: 92,976; xml: 1,754; sh: 1,227; python: 1,005; makefile: 831; perl: 550
file content (32 lines) | stat: -rw-r--r-- 744 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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"