File: test-http-send-name-hdr.cfg

package info (click to toggle)
haproxy 3.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 24,612 kB
  • sloc: ansic: 275,408; sh: 3,607; xml: 1,756; python: 1,345; makefile: 1,162; perl: 168; cpp: 21
file content (33 lines) | stat: -rw-r--r-- 837 bytes parent folder | download | duplicates (4)
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
33
# Test Rewriting Host header
global
       maxconn 100

defaults
	mode http
	timeout client 10000
	timeout server 10000
	timeout connect 10000
	balance roundrobin

listen send-name-silo-id
	bind :8001

	# Set the test conditions: Add a new header
	http-send-name-header X-Silo-Id
	server srv-silo1 127.0.0.1:8080

	# Add headers containing the correct values for test verification
	http-request add-header X-test-server-name-header X-Silo-Id
	http-request add-header X-test-server-name-value srv-silo1

listen send-name-host
	bind :8002

	# Set the test conditions: Replace an existing header
	http-send-name-header host
	server srv-host 127.0.0.1:8080

	# Add headers containing the correct values for test verification
	http-request add-header X-test-server-name-header Host
	http-request add-header X-test-server-name-value srv-host