erro de tempo limite do proxy_http

2

Olá Alguém pode me ajudar a resolver o erro abaixo

[Tue Dec 13 21:07:12.176702 2016] [proxy_http:error] [pid 9437372:tid 5398] (78)Connection timed out: [client 111.113.130.243:45615] AH01102: error reading status line from remote server 192.168.10.20:80
[Tue Dec 13 21:07:12.176790 2016] [proxy:error] [pid 9437372:tid 5398] [client 111.113.130.243:45615] AH00898: Error reading from remote server returned by /deto/javax.faces.resource/dynamiccontent.properties
[Tue Dec 13 21:36:12.261230 2016] [proxy_http:error] [pid 10485878:tid 5655] (78)Connection timed out: [client 111.113.130.243:11084] AH01102: error reading status line from remote server 192.168.10.20:80
[Tue Dec 13 21:36:12.261333 2016] [proxy:error] [pid 10485878:tid 5655] [client 111.113.130.243:11084] AH00898: Error reading from remote server returned by /deto/javax.faces.resource/dynamiccontent.properties
[Tue Dec 13 22:47:09.485419 2016] [proxy_http:error] [pid 9437372:tid 2828] (78)Connection timed out: [client 111.113.130.243:48852] AH01102: error reading status line from remote server 192.168.10.20:80
[Tue Dec 13 22:47:09.485497 2016] [proxy:error] [pid 9437372:tid 2828] [client 111.113.130.243:48852] AH00898: Error reading from remote server returned by /deto/javax.faces.resource/jsf.js
[Tue Dec 13 22:51:09.497259 2016] [proxy_http:error] [pid 6815772:tid 4370] (78)Connection timed out: [client 111.113.130.243:51259] AH01102: error reading status line from remote server 192.168.10.20:80
[Tue Dec 13 22:51:09.497365 2016] [proxy:error] [pid 6815772:tid 4370] [client 111.113.130.243:51259] AH00898: Error reading from remote server returned by /deto/javax.faces.resource/UKDGD56DadAKDJJADKkdj.js
[Tue Dec 13 22:52:09.500000 2016] [proxy_http:error] [pid 10485878:tid 5912] (78)Connection timed out: [client 111.113.130.243:52749] AH01102: error reading status line from remote server 192.168.10.20:80

estamos usando o proxy reverso do Apache e vemos o vs config

ProxyTimeout 1800
ProxyPreserveHost On
ProxyPass           /  http://192.168.10.20/ connectiontimeout=1800 timeout=1800
ProxyPassReverse    /  http://192.168.10.20/ 
    
por mikegray.397 16.12.2016 / 07:35

1 resposta

1

link

proxy-initial-not-pooled If this variable is set, no pooled connection will be reused if the client request is the initial request on the frontend connection. This avoids the "proxy: error reading status line from remote server" error message caused by the race condition that the backend server closed the pooled connection after the connection check by the proxy and before data sent by the proxy reached the backend. It has to be kept in mind that setting this variable downgrades performance, especially with HTTP/1.0 clients.

    
por 07.07.2017 / 07:49