I need to proxy http requests to https server in the backend. Everything is working except a minor issues in redirects URLs. ProxyPassReverse translates the the URL except the protocol i.e. does not translate https from backend server to http protocol.
Below is the configuration for reverse proxy
<VirtualHost *:8888>
SSLProxyEngine On
ProxyPreserveHost On
</VirtualHost>
e.g.
So ProxyPassReverse rewrites the URL except the protocol.
Am I missing some configurations here or this is some known issue or expected behavior?
I will appreciate any help on this front.
Thanks