Hi there, Looked all over the place but a bit stumped and don't want to break anything. My server has two ip addresses and I need to run something other than apache2 on <ip2>:443 how do I ensure that apache only binds to <ip1> Regards, Djerk
Please confirm if this will cause issues or not Changed "Listen 443" to "Listen 1.2.3.4:443" in /etc/apache2/ports.conf [I'm on Ubuntu 10.04 and ISPconfig 3.0.3] Code: <IfModule mod_ssl.c> # If you add NameVirtualHost *:443 here, you will also have to change # the VirtualHost statement in /etc/apache2/sites-available/default-ssl # to <VirtualHost *:443> # Server Name Indication for SSL named virtual hosts is currently not # supported by MSIE on Windows XP. Listen 1.2.3.4:443 </IfModule> <IfModule mod_gnutls.c> Listen 1.2.3.4:443 </IfModule>