mirror of https://github.com/midoks/mdserver-web
parent
176e4c8b3e
commit
345e38a560
@ -0,0 +1,38 @@ |
||||
global |
||||
daemon |
||||
pidfile /tmp/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 refresh 10 |
||||
stats uri /haproxy |
||||
stats realm Haproxy\ Statistics |
||||
stats auth {$HA_USER}:{$HA_PWD} |
||||
|
||||
|
||||
frontend tcp_frontend |
||||
bind *:8090 |
||||
mode tcp |
||||
default_backend tcp_backend |
||||
|
||||
backend tcp_backend |
||||
mode tcp |
||||
balance roundrobin |
||||
server tcp1 192.168.1.100:8090 check |
||||
|
||||
|
||||
Loading…
Reference in new issue