I've setup a backend with a bunch of servers as well as backup servers like that:
backend <mybackend>
mode http
option allbackups
balance roundrobin
option http-server-close
option httpclose
server <my-server> <my-ip>:80 check inter 5000 maxconn 20 rise 1 slowstart 30s weight 100
server <my-server> <my-ip>:80 check inter 5000 maxconn 20 rise 1 slowstart 30s weight 100
server <my-backup-server> <my-backup-ip>:80 maxconn 200 backup
server <my-backup-server> <my-backup-ip>:80 maxconn 200 backup
Today there was an outage and it showed up a basic 503 error instead of the setup backup-server maintenance page.
Now I need to know why that happens and when that happens. So what did I wrong?