File: test-url-hash.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 (40 lines) | stat: -rw-r--r-- 731 bytes parent folder | download | duplicates (11)
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
# This is a test configuration.
# It exercises the "url_param" balance algorithm. It looks for
# an URL parameter named "foo".

global
	maxconn 100
	log		127.0.0.1 local0

listen  vip1
	log		global
	option		httplog
        bind		:8000
        mode		http
        maxconn		100
        clitimeout	5000
	contimeout	5000
	srvtimeout	5000
	balance		url_param foo
	server		srv1 127.0.0.1:80
	server		srv2 127.0.0.1:80

	# control activity this way
	stats		uri /stat

listen  vip2
	log		global
	option		httplog
	bind		:8001
	mode		http
	maxconn		100
	clitimeout	5000
	contimeout	5000
	srvtimeout	5000
	balance		url_param foo check_post
	server		srv1 127.0.0.1:80
	server		srv2 127.0.0.1:80

	# control activity this way
	stats		uri /stat