haproxy-config 0.4.1

Parse HAProxy configs and easily query it
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
global
	maxconn 200

defaults
    timeout server-fin 1s

frontend front_a
	mode http
	bind *:9999
	
	stats auth admin:pass
	use_backend backend_a

backend backend_a # no need to check # health
	mode http
	server webserver 127.0.0.1:43 check