Hi
Is there a way to queue the HTTPS requests in the front end, if no back-end servers are currently available, instead of returning a 503 error to the client?
There is a firewall between my haproxy server and the back end servers. Once in a while, it will have a hiccup and drop all traffic for a second or two. This will fail the health check on all servers. Then I have to wait for the health check to pass before requests will be sent on. So I would like to hold the HTTPS requests in the front end, and wait for a back end server to become available.
Thanks!