Open the httpd.conf.
Uncomment the following lines
LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_http_module modules/mod_proxy_http.so
Add a new Virtual Host entry.
<IfModule mod_ibm_ssl.c> NameVirtualHost *:443 Listen *:443 #Virtual Host for the Connections Server <VirtualHost *:443> ServerName connect5.belsoft.ch SSLEnable RewriteEngine On RewriteRule ^/$ https://connect5.belsoft.ch/homepage [R,L] </VirtualHost> #VirtualHost for the proxied Domino <VirtualHost *:443> ProxyPreserveHost On ProxyPass / http://ldap.lab/ ProxyPassReverse / http://ldap.lab/ ServerName tools.belsoft.ch </VirtualHost></pre> <pre></IfModule></pre> <pre>