2005-12-18 00:57:06 +01:00
# this config needs haproxy-1.1.28 or haproxy-1.2.1
2005-12-17 14:10:59 +01:00
2005-12-17 13:14:35 +01:00
global
log 127.0.0.1 local0
2005-12-17 13:41:01 +01:00
log 127.0.0.1 local1 notice
#log loghost local0 info
2005-12-17 13:14:35 +01:00
maxconn 4096
2005-12-18 00:57:06 +01:00
chroot /usr/share/haproxy
uid 99
gid 99
2005-12-17 13:14:35 +01:00
daemon
#debug
#quiet
2005-12-17 14:10:59 +01:00
defaults
2005-12-17 13:14:35 +01:00
log global
mode http
option httplog
option dontlognull
retries 3
redispatch
maxconn 2000
contimeout 5000
clitimeout 50000
srvtimeout 50000
2005-12-17 14:10:59 +01:00
listen appli1-rewrite 0.0.0.0:10001
cookie SERVERID rewrite
balance roundrobin
server app1_1 192.168.34.23:8080 cookie app1inst1 check inter 2000 rise 2 fall 5
server app1_2 192.168.34.32:8080 cookie app1inst2 check inter 2000 rise 2 fall 5
server app1_3 192.168.34.27:8080 cookie app1inst3 check inter 2000 rise 2 fall 5
server app1_4 192.168.34.42:8080 cookie app1inst4 check inter 2000 rise 2 fall 5
2005-12-17 13:14:35 +01:00
listen appli2-insert 0.0.0.0:10002
2005-12-17 13:32:07 +01:00
option httpchk
2005-12-17 13:14:35 +01:00
balance roundrobin
cookie SERVERID insert indirect nocache
server inst1 192.168.114.56:80 cookie server01 check inter 2000 fall 3
server inst2 192.168.114.56:81 cookie server02 check inter 2000 fall 3
2005-12-17 13:41:01 +01:00
capture cookie vgnvisitor = len 32
2005-12-17 13:14:35 +01:00
2005-12-18 00:57:06 +01:00
option httpclose # disable keep-alive
2005-12-17 13:21:24 +01:00
rspidel ^Set-cookie:\ IP = # do not let this cookie tell our internal IP address
2005-12-17 13:14:35 +01:00
listen appli3-relais 0.0.0.0:10003
dispatch 192.168.135.17:80
2005-12-17 13:41:01 +01:00
listen appli4-backup 0.0.0.0:10004
2005-12-17 13:57:42 +01:00
option httpchk /index.html
2005-12-17 13:41:01 +01:00
option persist
balance roundrobin
server inst1 192.168.114.56:80 check inter 2000 fall 3
server inst2 192.168.114.56:81 check inter 2000 fall 3 backup
2006-07-09 16:42:34 +02:00
listen ssl-relay 0.0.0.0:8443
option ssl-hello-chk
balance source
server inst1 192.168.110.56:443 check inter 2000 fall 3
server inst2 192.168.110.57:443 check inter 2000 fall 3
server back1 192.168.120.58:443 backup
2005-12-17 13:41:01 +01:00
listen appli5-backup 0.0.0.0:10005
2005-12-17 13:57:42 +01:00
option httpchk *
2005-12-17 13:41:01 +01:00
balance roundrobin
cookie SERVERID insert indirect nocache
server inst1 192.168.114.56:80 cookie server01 check inter 2000 fall 3
server inst2 192.168.114.56:81 cookie server02 check inter 2000 fall 3
server inst3 192.168.114.57:80 backup check inter 2000 fall 3
capture cookie ASPSESSION len 32
2005-12-17 14:10:59 +01:00
srvtimeout 20000
2005-12-17 13:41:01 +01:00
2005-12-18 00:57:06 +01:00
option httpclose # disable keep-alive
option checkcache # block response if set-cookie & cacheable
2005-12-17 13:41:01 +01:00
rspidel ^Set-cookie:\ IP = # do not let this cookie tell our internal IP address
errorloc 502 http://192.168.114.58/error502.html