On Sun, Nov 9, 2008 at 5:10 PM, David BERCOT <[EMAIL PROTECTED]> wrote:
> NameVirtualHost *
> <VirtualHost *>
>        ServerName site1.mydomaine.org
>        DocumentRoot /site1
> </VirtualHost>
>
> <VirtualHost *>
>        ServerName site2.mydomaine.org
>        DocumentRoot /site2
> </VirtualHost>
>
> <VirtualHost *>
>        ServerName site3.mydomaine.org
>        DocumentRoot /site3
>        SSLEngine on
>        SSLCertificateFile /ssl/site3.cert
>        SSLCertificateKeyFile /ssl/site3.key
> </VirtualHost>

You need to tell apache to accept the port 443 traffic in a particular
vhost, and "*" doesn't work for that.

NameVirtualHost *:80
<virtualhost *:80>
...
</virtualhost>
<virtualhost *:80>
...
</virtualhost>

<virtualhost *:443>
SSLEngine on
...
</virtualhost>

-- 
Eric Covener
[EMAIL PROTECTED]

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to