Here is the configuration you need for that. Basically you need to turn off Cert verify and keep ProxyPreserveHost on
<VirtualHost *:443>
ServerName apex.mycompany.com
DocumentRoot /var/www/html
# Configure your SSL Cert here
# To enable SSL Proxy support
SSLProxyEngine on
ProxyPreserveHost On
SSLProxyVerify none
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
SSLProxyCheckPeerExpire off
# Proxy URL Rewrite
ProxyPass / https://apex.oracle.com/
ProxyPassReverse / https://apex.oracle.com/
</VirtualHost>
No comments:
Post a Comment