- give ssl-vhost files another name that non-ssl vhost files, now really fixes #254

This commit is contained in:
Michael Kaufmann (d00p)
2010-06-08 11:13:22 +00:00
parent 950c9d7373
commit fd96e4b42e

View File

@@ -283,10 +283,18 @@ class lighttpd
if((int)$domain['parentdomainid'] == 0)
{
$vhost_no = '51';
if($ssl == '1')
{
$vhost_no = '61';
}
}
else
{
$vhost_no = '50';
if($ssl == '1')
{
$vhost_no = '60';
}
}
$vhost_filename = makeCorrectFile($this->settings['system']['apacheconf_vhost'].'/vhosts/'.$vhost_no.'_'.$domain['domain'].'.conf');