2012-12-20 158 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的一個錯誤,我相信。

希望這可以幫助別人。