Tanu Gupta
Tanu Gupta

Reputation: 612

What response code Apache throws when it max out?

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

Answers (1)

Nitin Dhomse
Nitin Dhomse

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

Related Questions