I just had problems getting a new certificate to work, and noticed that the Vhosts_ispconfig.conf had: Code: NameVirtualHost 192.168.0.50:80 NameVirtualHost 192.168.0.51:80 NameVirtualHost 192.168.0.52:80 But the SSL port (443) had no NameVirtualHost entries. I greped the source to find any occurances of NameVirtualHost and only found it in one place. I've tried to fix this by changing /root/ispconfig/scripts/lib/config.lib.php at line 1230 from: Code: $mod->tpl->assign( array(SERVERIP => "NameVirtualHost ".$ip["server_ip"].$web_port)); to: Code: $mod->tpl->assign( array(SERVERIP => "NameVirtualHost ".$ip["server_ip"].$web_port), array(SERVERIP => "NameVirtualHost ".$ip["server_ip"].$ssl_port)); But this hasn't solved the problem. I'm going to delve into the template class now to see if I can see how it works and what I need to do to fix this issue. Any tips, pointers, advice, existing patches would be very welcome Thanks! BB
Well I'm not sure what happened, but after restarting apache manually without the NameVirtualHost 443 in the conf file, the certs still work properly. I'm still confused however about the error message: Code: [warn] VirtualHost 192.168.0.51:443 overlaps with VirtualHost 192.168.0.51:443, the first has precedence, perhaps you need a NameVirtualHost directive grepping the whole /etc/apache2 directory and below for VirtualHost shows there is only one definition for each IP on port 443, so I'm not sure why the warning says there are two. However, it's only a warning and the sites work, so I'm not too fussed right now.