On Tue, 3 Oct 2006 19:25:17 +0200

> Hi, sorry,
> 
> On Tue, 3 Oct 2006 16:48:50 +0200
> Hans-Werner Hilse <[EMAIL PROTECTED]> wrote:
> 
> > So basically that means you can only have one SSL server per IP.
> 
> should have been "per IP:Port combination".
> 
> -hwh

As Mr. Hans-Werner Hilse already explained, you have to assign a different IP 
address for
each SSL vhost. I'll add just an example:


NameVirtualHost 10.0.0.222:443
<VirtualHost 10.0.0.222:443>
ServerName vhost-111.example.com
SSLEngine on
SSLCertificateFile    /path/to/certificates/vhost-111/server.crt
SSLCertificateKeyFile /path/to/certificates/vhost-111/server.key
....
</VirtualHost>

NameVirtualHost 10.0.0.111:443
<VirtualHost10.0.0.111:443>
ServerName vhost-222.example.com
SSLEngine on
SSLCertificateFile    /path/to/certificates/vhost-222/server.crt
SSLCertificateKeyFile /path/to/certificates/vhost-222/server.key
....
</VirtualHost>

-- 
Best regards,
Daniel

-- 
[email protected] mailing list

Reply via email to