Hi,
I've currently got an stunnel/haproxy setup that is working a treat. However
I've got intermittent issues with pages being partially loaded (cache most
likely) and other parts of the page are blank for about 5-20 seconds then they
all come in and the page is loaded.
Now this is intermittent and I've only seen it 'twice' so I cannot replicate it
100%. In fact I'd say it's happening 5% of the time.
I do notice FIN_WAIT_1 when I do a netstat -an on the web servers (IIS 6) and
one server in particular has more of them then the others. Not sure if this
means anything.
My haproxy.cfg file is below.
global
daemon
maxconn 10000
nbproc 2
log 127.0.0.1 syslog
defaults
log global
clitimeout 60000
srvtimeout 30000
contimeout 4000
retries 3
option redispatch
option http-server-close
option abortonclose
listen http :80
mode http
balance roundrobin
cookie ODSERVER insert nocache indirect
option httpchk HEAD /check.cfm
option forwardfor except X.X.X.X
reqadd X-Forwarded-Proto:\ http
server server3 X.X.X.X:80 cookie server3 weight 1 maxconn 2000 check inter
5000
server server5 X.X.X.X:80 cookie server5 weight 1 maxconn 2000 check inter
5000
server server7 X.X.X.X:80 cookie server7 weight 1 maxconn 2000 check inter
5000
listen https X.X.X.X:81
mode http
balance roundrobin
cookie ODSERVER insert nocache indirect
option httpchk HEAD /check.cfm
option forwardfor except X.X.X.X
reqadd X-Forwarded-Proto:\ https
reqadd SSL-TERMINATION:\ ON
server server3 X.X.X.X:81 cookie server3 weight 1 maxconn 2000 check inter
5000
server server5 X.X.X.X:81 cookie server5 weight 1 maxconn 2000 check inter
5000
server server7 X.X.X.X:81 cookie server7 weight 1 maxconn 2000 check inter
5000
listen lb_stats X.X.X.X:8443
mode http
stats uri /monitor
stats auth admin:p...@ssw0rd
#stats refresh 5s