38 lines
791 B
INI
38 lines
791 B
INI
global
|
|
log 127.0.0.1 local0
|
|
log 127.0.0.1 local1 notice
|
|
maxconn 20000
|
|
user haproxy
|
|
group haproxy
|
|
spread-checks 0
|
|
|
|
defaults
|
|
log global
|
|
mode http
|
|
option httplog
|
|
option dontlognull
|
|
retries 3
|
|
timeout queue 1000
|
|
timeout connect 1000
|
|
timeout client 30000
|
|
timeout server 30000
|
|
|
|
listen stats :8888
|
|
mode http
|
|
stats enable
|
|
stats hide-version
|
|
stats realm Haproxy\ Statistics
|
|
stats uri /
|
|
stats auth admin:password
|
|
|
|
{% if units %}
|
|
{% for service, ports in service_ports.iteritems() -%}
|
|
listen {{ service }} 0.0.0.0:{{ ports[0] }}
|
|
balance roundrobin
|
|
option tcplog
|
|
{% for unit, address in units.iteritems() -%}
|
|
server {{ unit }} {{ address }}:{{ ports[1] }} check
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endif %}
|