Ho un server che funge da front-end per un mailserver cPanel in una rete. Il proxy apache sul server front-end ha funzionato per 152 giorni senza errori, quindi all'improvviso ora ricevo errori 500/502 quando lo utilizzo per accedere ai client webmail del mailserver.
Il server front-end utilizza un certificato SSL firmato, il server cPanel utilizza un certificato autofirmato. Ecco l'output del log degli errori dal server front-end al primo avvio:
[Tue Sep 10 18:22:52.959291 2013] [proxy:error] [pid 19531] (502)Unknown error 502: [client 173.xx.xx.xx:9558] AH01084: pass request body failed to 184.xx.xx.xx:2096 (184.xx.xx.xx), referer: https://domain.com:2096/cpsess12385596/3rdparty/roundcube/?_task=mail&_refresh=1&_mbox=INBOX
[Tue Sep 10 18:22:52.959469 2013] [proxy:error] [pid 19531] [client 173.xx.xx.xx:9558] AH00898: Error during SSL Handshake with remote server returned by /cpsess12385596/3rdparty/roundcube/, referer: https://domain.com:2096/cpsess12385596/3rdparty/roundcube/?_task=mail&_refresh=1&_mbox=INBOX
Il server front-end è un'istanza EC2 che esegue la Apache/2.4.6 (Amazon)
configurazione di My VirtualHost per il proxy su questo server è la seguente:
< VirtualHost *:2096>
ServerName domain.com
SSLEngine on
SSLProxyEngine on
SSLProxyVerify none
SSLProxyCheckPeerCN off
SSLCertificateFile /x/x/x/domain.com.crt
SSLCertificateKeyFile /x/x/x/domain.com.key
SSLCACertificateFile /x/x/x/domain.com.cabundle
ProxyPass / https://184.xx.xx.xx:2096/
ProxyPassReverse / https://184.xx.xx.xx:2096/
ProxyPassReverseCookieDomain 184.xx.xx.xx:2096 domain.com
ProxyPassReverseCookiePath / /
SetOutputFilter INFLATE;proxy-html;DEFLATE
ProxyHTMLURLMap https://184.xx.xx.xx:2096 /
< /VirtualHost>
Per quanto riesco a pensare che nulla sia cambiato sul server front-end, non ho fatto alcun aggiornamento o altro, una volta notato questo problema e armeggiare senza successo ho provato a riavviare su entrambi i server ma non ha fatto nulla per risolvere questo problema.
Eventuali suggerimenti?