Any ideas on how to specify cert/key files for virtual hosts which do not
exist?

I am rewriting URLs to the appropriate directories with the following:

RewriteEngine   On
RewriteMap vhost txt:/var/www/conf/vhost.map
RewriteMap    lowercase    int:tolower

RewriteCond   %{HTTP_HOST}  !^$
RewriteCond   ${lowercase:%{HTTP_HOST}|NONE}  ^(.+)$
RewriteCond   ${vhost:%1}  ^(/.*)$
RewriteRule   ^/(.*)$   %1/$1  [E=VHOST:${lowercase:%{HTTP_HOST}}]

So I do not have any <VirtualHost> entries. Some of these domains I am
hosting should be SSL enabled. I understand that I can turn on the SSL
engine in the global config, but how do I specify cert/key files for the
appropriate domains which need SSL ?


Any help would be greatly appreciated...

-Dave
California Internet Connection


______________________________________________________________________
Apache Interface to OpenSSL (mod_ssl)  www.engelschall.com/sw/mod_ssl/
Official Support Mailing List               [EMAIL PROTECTED]
Automated List Manager                       [EMAIL PROTECTED]

Reply via email to