mirror of https://github.com/midoks/mdserver-web
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.
38 lines
626 B
38 lines
626 B
global
|
|
daemon
|
|
log 127.0.0.1 local0
|
|
chroot /var/lib/haproxy
|
|
pidfile /var/run/haproxy.pid
|
|
maxconn 4000
|
|
user haproxy
|
|
group haproxy
|
|
|
|
|
|
defaults
|
|
mode http
|
|
log global
|
|
option httplog
|
|
timeout connect 10s
|
|
timeout client 15s
|
|
timeout server 15s
|
|
|
|
|
|
listen stats
|
|
mode http
|
|
bind *:10800
|
|
stats enable
|
|
stats uri /haproxy
|
|
stats realm Haproxy\ Statistics
|
|
stats auth admin:admin
|
|
|
|
frontend http-in
|
|
bind *:1080
|
|
default_backend servers
|
|
option forwardfor
|
|
option httpclose
|
|
|
|
backend servers
|
|
balance roundrobin
|
|
server web1 0.0.0.0:9090 check
|
|
|
|
|
|
|