놀다! 프레임워크: Apache mod_proxy가 때때로 프록시 오류를 전달함

놀다! 프레임워크: Apache mod_proxy가 때때로 프록시 오류를 전달함

백엔드는 Play! 프레임워크 애플리케이션.

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

사이트 구성은 다음과 같습니다.

<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>

추가한 후연결 유지=켜기, 개선된 점을 확인할 수 있었습니다. 하지만 여전히 프록시 오류가 발생합니다!

관련 정보