Sha256: 751c15e421dab093ef1ab1d87742a7ee1b17ff742994543e4f3f9853b792cb52
Contents?: true
Size: 952 Bytes
Versions: 8
Compression:
Stored size: 952 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 frontend dell *:80 acl host_xenium hdr_beg(host) -i xenium.example.com acl host_xenium hdr_beg(host) -i x.example.com acl host_app1 hdr_beg(host) -i intrepica.com acl host_app1 hdr_beg(host) -i www.intrepica.com use_backend localhost if host_xenium use_backend app1 if host_app1 backend localhost server LOCALHOST 127.0.0.1:81 backend app1 server APP1 192.168.0.179:80
Version data entries
8 entries across 8 versions & 2 rubygems