2015-11-06 21:39:33 +01:00
|
|
|
---
|
|
|
|
set: 5
|
|
|
|
code: 503
|
|
|
|
title: Service Unavailable
|
2015-11-07 06:05:36 +01:00
|
|
|
references:
|
|
|
|
"Rails HTTP Status Symbol": ":service_unavailable"
|
2016-01-27 23:08:33 +01:00
|
|
|
"Go HTTP Status Constant": "http.StatusServiceUnavailable"
|
2016-04-19 15:19:17 +02:00
|
|
|
"Symfony HTTP Status Constant": "Response::HTTP_SERVICE_UNAVAILABLE"
|
2015-11-06 21:39:33 +01:00
|
|
|
---
|
|
|
|
|
2015-11-09 02:54:09 +01:00
|
|
|
The server is currently unable to handle the request due to a temporary overload
|
|
|
|
or scheduled maintenance, which will likely be alleviated after some delay.
|
2015-11-07 06:48:31 +01:00
|
|
|
|
2015-11-09 02:54:09 +01:00
|
|
|
The server MAY send a Retry-After header field<sup>[1](#ref-1)</sup> to suggest
|
|
|
|
an appropriate amount of time for the client to wait before retrying the
|
2015-11-07 06:48:31 +01:00
|
|
|
request.
|
2015-11-07 06:05:36 +01:00
|
|
|
|
|
|
|
Note: The existence of the 503 status code does not imply that a server has to
|
|
|
|
use it when becoming overloaded. Some servers might simply refuse the
|
|
|
|
connection.
|
|
|
|
|
2015-11-09 02:54:09 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
* <span id="ref-1"><sup>1</sup> Retry-After [RFC7231 Section 7.1.3][2]</span>
|
|
|
|
* Source: [RFC7231 Section 6.6.4][1]
|
2015-11-07 06:05:36 +01:00
|
|
|
|
|
|
|
[1]: <http://tools.ietf.org/html/rfc7231#section-6.6.4>
|
2016-01-27 23:08:33 +01:00
|
|
|
[2]: <http://tools.ietf.org/html/rfc7231#section-7.1.3>
|