Play! Framework: Apache mod_proxy liefert gelegentlich Proxy-Fehler

Play! Framework: Apache mod_proxy liefert gelegentlich Proxy-Fehler

Das Backend ist eine Play! Framework-Anwendung.

Proxy Error

The proxy server received an invalid response from an upstream server.
The proxy server could not handle the request GET /entries/topic~showcase

Reason: Error reading from remote server

Apache/2.2.22

Hier ist die Site-Konfiguration:

<VirtualHost *:80>
  ProxyPreserveHost On
  ServerName www.xxx.com
  ServerAlias xxx.com
  ProxyPass  /excluded !
  ProxyPass /investor http://127.0.0.1:81/investor
  ProxyPass /phppgadmin http://127.0.0.1:81//phppgadmin
  ProxyPass / http://127.0.0.1:9000/ keepalive=On
  ProxyPassReverse / http://127.0.0.1:9000/
</VirtualHost>

Nach dem HinzufügenKeepalive = Ein, ich konnte eine Verbesserung feststellen. Aber der Proxy-Fehler tritt immer noch auf!

verwandte Informationen