2

我有一个 RoR 应用程序,在从该应用程序中删除内容时,我遇到了以下错误。虽然当我在这个错误之后刷新网页时,请求中的内容被删除了。

The proxy server received an invalid response from an upstream server.
The proxy server could not handle the request POST /abc/xyz/source/23.

Reason: Error reading from remote server.

这是一个 Apache Web 服务器。

你能帮我找出这背后的原因吗?

4

1 回答 1

1

当 Apache Web 服务器没有收到来自上游服务器的有效 HTTP 响应时,会生成来自上游服务器的无效响应。

原因可能是因为以下几点;

  1. 应用程序没有及时响应,来自 Apache 的请求超时。
  2. 可能是网络设备阻止了请求。

您需要在应用程序的 httpd.conf 文件中添加/增加超时限制。

于 2015-12-08T08:51:55.863 回答