If we connect over SSL to an Apache reverse proxy and we configure in a Virtual Host the following:
<VirtualHost *:443>
ProxyRequests off
ServerName test.domain.nl
ServerAlias test
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
ProxyPassReverse / http://domino.domain.local/
ProxyPass / http://domino.domain.local/
<VirtualHost *:80>
ServerName test.domain.nl
ServerAlias test.domain.nl
Redirect / https://test.domain.nl/
When connecting to the Domino server I got the Domino Web Access login screen. All over HTTPS but when I submit the login
form a message box from the browser apears that I’m leaving a secure web site. I have to click yes. Then password is submitted and my mail database is opened over HTTPS.
How to prevent the message / Dialog box that I leave a secure website. Why this switch to port 80 and not staying with 443 ???
Thanks in advanced, Barend