Apache Reverse Poxy with ssl to Domino Web Access

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

Subject: Apache Reverse Poxy with ssl to Domino Web Access

Some extra details:Rewrite rules is not necessary.

Everything works fine if we don’t use virtual hosts in the apache config. But we don’t want a reverse proxy for every mail server.

So please help !

<VirtualHost *:443> ProxyRequests off

ServerName test.domain.nl

ServerAlias test

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/

Subject: RE: Apache Reverse Poxy with ssl to Domino Web Access

Did you find a solution for this?

Subject: RE: Apache Reverse Poxy with ssl to Domino Web Access

We still use a reverse proxy for every mailserver. No solution found!