mirror of https://github.com/Aidaho12/haproxy-wi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
5 years ago
|
global
|
||
|
log 127.0.0.1 local2
|
||
|
chroot /var/lib/haproxy
|
||
|
pidfile /var/run/haproxy.pid
|
||
|
maxconn 4000
|
||
|
user haproxy
|
||
|
group haproxy
|
||
|
daemon
|
||
|
stats socket /var/lib/haproxy/stats
|
||
|
stats socket *:{{SOCK_PORT}} level admin
|
||
|
stats socket /var/run/haproxy.sock mode 600 level admin
|
||
|
{% if haproxy_version == '1.6' %}
|
||
|
server-state-file {{STAT_FILE}}
|
||
|
{% endif %}
|
||
|
|
||
|
defaults
|
||
|
mode http
|
||
|
log global
|
||
|
option httplog
|
||
|
option dontlognull
|
||
|
option http-server-close
|
||
|
option forwardfor except 127.0.0.0/8
|
||
|
option redispatch
|
||
|
retries 3
|
||
|
timeout http-request 10s
|
||
|
timeout queue 1m
|
||
|
timeout connect 10s
|
||
|
timeout client 1m
|
||
|
timeout server 1m
|
||
|
timeout http-keep-alive 10s
|
||
|
timeout check 10s
|
||
|
maxconn 3000
|
||
|
|
||
|
listen stats
|
||
|
bind *:{{STAT_PORT}}
|
||
|
stats enable
|
||
|
stats uri /stats
|
||
|
stats realm HAProxy-04\ Statistics
|
||
|
stats auth {{STATS_USER}}:{{STATS_PASS}}
|
||
|
stats admin if TRUE
|