I've setup an OHS server (managed by me) to be used to proxy requests to another server (not managed by me).
As of right now, the relevant part of the OHS server's virtual_hosts.conf looks like this:
<IfModule mod_proxy.c>
SSLProxyEngine On
ProxyPassMatch ^/home/page(.*)$ https://external-website.cloudfront.net/$1
ProxyPassReverse ^/home/page(.*)$ https://external-website.cloudfront.net/$1
ProxyPreserveHost On
ProxyRequests off
SSLProxyProtocol ALL
SSLProxyCipherSuite HIGH:MEDIUM:!NULL:+SHA1
SSLProxyWallet /path/to/orapki/wallet
</IfModule>
The requests coming to https://www.my-page.com/home/page
seem to be redirecting to https://external-website.cloudfront.net/
, however I'm seeing the following page when accessing it:
This is clearly an error being thrown by the end server.
My question is, would this error be thrown because I'm not proxying the requests correctly, or because the end-server hasn't been configured to accept proxy requests? I wanted to be sure everything was ok on my end before contacting the server administrator at the end server.
As an additional piece of information, I've added the SSL certificates from the end-server website to the orapki wallet.
Thanks and happy holidays.