如果代理根本没有收到响应,是否应该使用 502 HTTP 状态代码?
根据 RFC:
10.5.3 502 错误网关
服务器在充当网关或代理时,从它在尝试满足请求时访问的上游服务器接收到无效响应。
无效响应是否也意味着根本没有响应(例如连接被拒绝)?
According to the RFC:
10.5.3 502 Bad Gateway
The server, while acting as a gateway or proxy, received an invalid response from the upstream server it accessed in attempting to fulfill the request.
Can invalid response also mean no response at all (e.g. connection refused)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。如果通过网关或代理访问,通常由连接断开或服务器端崩溃引起的空或不完整标头或响应正文可能会导致 502 错误。
有关网络错误的更多信息
https://en.wikipedia.org/wiki/List_of_HTTP_status_codes
Yes. Empty or incomplete headers or response body typically caused by broken connections or server side crash can cause 502 errors if accessed via a gateway or proxy.
For more information about the network errors
https://en.wikipedia.org/wiki/List_of_HTTP_status_codes