Random haproxy 408 errors
- by Errol Fitzgerald
I keep getting random 408 timeout messages from haproxy, but can't figure out if its a bug in 1.5-dev25 or something in my config file
global
log 127.0.0.1 local0
log 127.0.0.1 local1 info
#log loghost local0 info
maxconn 80000
#debug
#quiet
user haproxy
group haproxy
stats socket /tmp/haproxy.sock
defaults
log global
mode http
errorfile 503 /etc/haproxy/errors/503.http
option httplog
option dontlognull
retries 3
option redispatch
maxconn 80000
timeout client 12s
timeout server 120s
timeout queue 120s
timeout connect 10s
timeout http-request 30s
option http-server-close
timeout http-keep-alive 3000
option abortonclose
option httpchk
...
Does anyone see anything wrong with these config settings?