36 lines
957 B
INI
36 lines
957 B
INI
# Default haproxy config file.
|
|
global
|
|
daemon
|
|
stats socket /tmp/haproxy
|
|
server-state-file global
|
|
server-state-base /var/state/haproxy/
|
|
|
|
defaults
|
|
log global
|
|
mode http
|
|
option dontlognull
|
|
option dontlog-normal
|
|
timeout connect 5000
|
|
timeout client 50000
|
|
timeout server 50000
|
|
errorfile 400 /etc/haproxy/errors/400.http
|
|
errorfile 403 /etc/haproxy/errors/403.http
|
|
errorfile 408 /etc/haproxy/errors/408.http
|
|
errorfile 500 /etc/haproxy/errors/500.http
|
|
errorfile 502 /etc/haproxy/errors/502.http
|
|
errorfile 503 /etc/haproxy/errors/503.http
|
|
errorfile 504 /etc/haproxy/errors/504.http
|
|
|
|
# haproxy stats, required hostport and firewall rules for :1936
|
|
listen stats
|
|
bind *:1936
|
|
mode http
|
|
stats enable
|
|
stats hide-version
|
|
stats realm Haproxy\ Statistics
|
|
stats uri /
|
|
|
|
frontend httpfrontend
|
|
# Frontend bound on all network interfaces on port 80
|
|
bind *:80
|
|
mode http
|