What i am tring to do is use seperate ssl certificates for each virtual domain.
I have been looking at this file
/etc/e-smith/templates/etc/httpd/conf/http/conf/VirtualHosts/225SSLDirectives
and it appears all i need to do is set $SSLstatus to enabled and i can't find where it is initially setup (ie disabled).can anyone tell me where to look.
cheers darren
p.s a copy of the file is below.
my $SSLstatus = db_get_prop($confref, 'modSSL', 'status') || 'disabled';
if ($SSLstatus eq 'enabled')
{
#------------------------------------------------------------
# SSL Stuff
#------------------------------------------------------------
my $customCrt = db_get_prop($confref, "modSSL", "crt");
my $crt = $customCrt ? $customCrt :
"/home/e-smith/ssl.crt/secure.${DomainName}.crt";
my $customKey = db_get_prop($confref, "modSSL", "key");
my $key = $customKey ? $customKey :
"/home/e-smith/ssl.key/secure.${DomainName}.key";
$OUT .= < # SSL Directives
SSLEngine on
SSLCertificateFile $crt
SSLCertificateKeyFile $key
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown downgrade-1$
SSL_END
}
}