Sha256: 970012170f521ba1c171c318e85212e3026bc515a5dd135b62407d8f4b84ae31
Contents?: true
Size: 714 Bytes
Versions: 34
Compression:
Stored size: 714 Bytes
Contents
# /etc/haproxy.cfg # # Reload gracefully with: # # haproxy -f /etc/haproxy.cfg -sf `cat /var/run/haproxy.pid` # global log /var/log/haproxy.log daemon info maxconn 4096 pidfile /var/run/haproxy.pid daemon defaults option forwardfor stats enable stats auth myuser:mypass balance roundrobin option httpclose mode http retries 3 option redispatch maxconn 2000 contimeout 5000 clitimeout 50000 srvtimeout 50000 listen example_lb *:81 option httpchk HEAD /check.txt HTTP/1.0 server web1 127.0.0.1:80 weight 6 maxconn 12 check # cookie A server web2 127.0.0.1:80 weight 10 maxconn 12 check # cookie B
Version data entries
34 entries across 34 versions & 2 rubygems