3

我正在尝试配置以下环境:一个运行 apache 和 mod_proxy 的 VPS 来代理另一个在家里运行的服务器(后端)。我可以下载文件,但是当我尝试上传文件时,POST 请求失败并出现以下错误:

Proxy Error

The proxy server received an invalid response from an upstream server.
The proxy server could not handle the request POST /upload/upload.php.

Reason: Error reading from remote server

我不明白为什么它适用于低至 500 字节的文件。它很快!但是,当我尝试上传一个 4kb 的小文件时,需要很长时间才能出现错误。正如预期的那样,当直接访问后端而不使用 VPS 时,上传工作完美无缺。我为双方尝试了许多配置,也尝试增加超时,但我不认为这是要走的路。后端安装了 mod_access,当文件上传失败时它不会记录任何内容。

apache记录以下内容:

[Thu Nov 07 22:26:03.044309 2013] [proxy_http:error] [pid 9173] (70007)The timeout specified has expired: [client 177.148.252.99:54097] AH01102: error reading status line from remote server myhome.com, referer: http://frontend.com/upload/
[Thu Nov 07 22:26:03.044423 2013] [proxy:error] [pid 9173] [client 177.148.252.99:54097] AH00898: Error reading from remote server returned by /upload/upload.php, referer: http://frontend.com/upload/

VPS 正在运行 Apache 2.4.6,而在家中运行的服务器是带有 SSL 的 Lighttpd 1.4.32。

重定向到后端的虚拟主机配置如下:

<VirtualHost *:80>
        ServerAdmin webmaster@frontend.com
        ServerName frontend.com
        ProxyPass        / http://backend.com/
        ProxyPassReverse / http://backend.com/
</VirtualHost>

前端: http: //frontend.com/upload/

后端: http ://backend.com/upload/

你有什么想法?

4

2 回答 2

3

您看到的错误是由于与后端系统的代理连接超时。您需要将 ProxyTimeout 值设置为大于默认值。我建议您从 60 秒的值开始,看看它是如何工作的。

ProxyTimeout 60

此外,我同意 Varghese 的观点,即您希望设置环境变量以配置连接以分块发送数据。不幸的是,对于是否应该正确设置存在一些混淆,因此您可以尝试以下任何一种:

SetEnv proxy-sendchunked  1

或者

SetEnv proxy-sendchunks  1

祝你好运。这是一个令人沮丧的问题。


环境变量可用于mod_proxy

https://httpd.apache.org/docs/2.4/mod/mod_proxy_http.html

于 2014-08-05T18:35:21.073 回答
2

我遇到了类似的问题,并在声明之后得到了解决ProxyPassReverse

您必须使用的命令是:SetEnv proxy-sendchunks 1

于 2013-11-21T08:18:29.993 回答