2012-12-20 56 views
2

我的网络系统:Apache的反向代理错误

互联网< ---> Apache的反向代理< ----> Apache的应用服务器

URL的客户端访问互联网:www.example.com

我的问题:

当我访问www.example.com并上传数据(这是excel文件)。我得到以下错误:

Proxy Error

The proxy server received an invalid response from an upstream server. The proxy server could not handle the request POST /index.php/adminstrator/store/substore/import/.

Reason: Error reading from remote server

Apache/2.2.3 (CentOS) Server at www.example.com Port 80

要解决我已经设置了配置httpd.conf中的问题:

KeepAlive On 
MaxKeepAliveRequest 0 
KeepAliveTimeout 7200 

但它仍然给了我同样的错误。

回答

0

我们通过设置在httpd.conf以下解决类似的错误:

SetEnv proxy-initial-not-pooled 

这似乎是与Apache 2.2.x的一个错误,我相信。

希望这可以帮助别人。