Reputation: 612
I use Apache 2.4 as web server. When it exceeds max connections limit, what response code the client receives from the web server?
Upvotes: 0
Views: 122
Reputation: 2622
Apache throws 504 status code response to client.
504 GATEWAY TIMEOUT
The server, while acting as a gateway or proxy, did not receive a timely response from an upstream server it needed to access in order to complete the request.
Upvotes: 1