I have an apache reverse proxy server with two balancer members - one for non-secure and one for secure. I want to 'reverse' the request to the machine inside the firewall using the original protocol. As far as I can tell, lines like:
ProxyPassMatch (?i)^/mydir(.*)$ balancer://ags-lb-NS/mydir/$1
ProxyPassReverse /mydir balancer://ags-lb-NS/mydir
leave no room for the original request protocol.
Or perhaps there is something I could add the to the header that could be detected on the inside machine.