I work with application which comunicate with server over HTTP, but this server runs on HTTPS in my case and there is also basic authentication. There is no way to change this settings.
My idea is configure proxy on Apache server and then website wil be accessible at http://localhost/ and apache will be something like intermediator. I don't want redirect, rather something like mapping.
I tried configuration like below but it didn't work.
<VirtualHost *:80>
ServerName foo.com
SSLProxyEngine On
ProxyPass / https://login:passwd@secured.web.com
ProxyPassReverse / https://login:passwd@secured.web.com
</VirtualHost>
I will be glad for every idea.