File: test-connection.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 (42 lines) | stat: -rw-r--r-- 883 bytes parent folder | download | duplicates (12)
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
34
35
36
37
38
39
40
41
42
# This is a test configuration.
# It is used to check the various connection modes

global
	maxconn 100

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

listen httpclose
	option	httpclose
	bind	:8001
	server	srv 127.0.0.1:8080
	reqadd	X-request:\ mode=httpclose
	rspadd	X-response:\ mode=httpclose

listen server-close
	option	http-server-close
	bind	:8002
	server	srv 127.0.0.1:8080
	reqadd	X-request:\ mode=server-close
	rspadd	X-response:\ mode=server-close

listen httpclose_server-close
	option	httpclose
	option	http-server-close
	bind	:8003
	server	srv 127.0.0.1:8080
	reqadd	X-request:\ mode=httpclose+server-close
	rspadd	X-response:\ mode=httpclose+server-close

listen forceclose
	option forceclose
	bind	:8004
	server	srv 127.0.0.1:8080
	reqadd	X-request:\ mode=forceclose
	rspadd	X-response:\ mode=forceclose