I have Apache24 https reverse proxy to Lotus Domino http. It works fine up to the login page for Domino. Once clients login they are getting an http page instead of an https page. Once I type in “https://” in front of the URL everything works fine through all other requests. Any ideas why the login page does not reverse proxy back to an https page?
Paul
My httpd.conf file is below:
<VirtualHost *:443>
ServerName www.myserver.com:443
<Proxy *>
Order deny,allow
Allow from All
ProxyRequests Off
ProxyPreserveHost On
ProxyPass / http://127.0.0.1/
ProxyPassReverse / http://l27.0.0.1/
RedirectMatch ^/$ https://www.myserver.com
SSLEngine on
SSLProxyEngine On
SSLCertificateFile c:\apache24\certs\wf03.cer
SSLCertificateKeyFile c:\apache24\certs\wf03.key