haproxy-config 0.4.1

Parse HAProxy configs and easily query it
Documentation
global
	maxconn 200

defaults
    timeout server-fin 1s

frontend stats
	mode http

.if defined(TESTING)
	frontend testy
		mode http
		bind *:80
		use_backend test
.else
	frontend producty
		mode http
		bind *:80
		use_backend production
.endif

backend test
    mode http
    server test_server 127.0.0.1:49 check

backend production
    mode http
    server productino_server 127.0.0.1:50 check