AH01097: pass request body failed to, Error during SSL Handshake with remote server returned by
pass request body failed to, Error during SSL Handshake with remote server returned by
This error happens on using the Apache as a reverse proxy for https enabled backend server. Here the request failing because the certificates common name did not match the server name.
We can resolve this error by modifying the Apache ssl configuration file with the following lins.
SSLProxyEngine on
SSLProxyVerify none
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
If this is required for one domain only, the above lines are need to be added on corresponding virtualhost configuration.
Since we have modified the Apache configuration, the service should be restarted.
#systemctl restart httpd
That's all…