File: basic-check.cfg

package info (click to toggle)
haproxy 3.2.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 23,924 kB
  • sloc: ansic: 267,927; sh: 3,466; xml: 1,756; python: 1,345; makefile: 1,155; perl: 168; cpp: 21
file content (34 lines) | stat: -rw-r--r-- 552 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
34
global
	maxconn 500
	external-check
	stats socket /tmp/sock1 mode 666 level admin

defaults
	timeout client 5s
	timeout server 5s
	timeout connect 5s
	mode http

listen stats
	bind :8888
	stats uri /

backend tcp9000
	option httpchk
	server srv 127.0.0.1:9000 check inter 1s

backend tcp9001
	option httpchk
	server srv 127.0.0.1:9001 check inter 1s ssl verify none

backend tcp9006
	option httpchk
	server srv 10.0.0.0:9006 check inter 1s verify none

backend ssh
	server blah 127.0.0.1:22 check inter 1s

frontend dummy
	#mode http
	bind :9000-9004