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.Version: Apache/2.2.15Below is the configuration for reverse proxy<VirtualHost *:8888>ServerName frontoffice.example.comSSLProxyEngine OnProxyPreserveHost OnProxyPass /shop https://backend.example.com:9443/shopProxyPassReverse /shop https://backend.example.com:9443/shop</VirtualHost>e.g.http://frontoffice.example.com:8888/shop/cart are proxied to https://backend.example.com:9443/shop/cart. The backend server results in redirect (302) to https://backend.example.com:9443/shop/login but browser is getting the redirect asSo 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