While we're on this topic...
Owen Boyle wrote .... on 01.03.26

"This question comes up so often it ought to be in the .sig of the list... ", and
this ends with "Use different port numbers for different SSL hosts".

I personally don't know what the .sig would mean, but the last comment
intriques me. 

By using different IP ports ... might something like the following work?
For example:

<VirtualHost
192.168.1.1>
        ServerAdmin [EMAIL PROTECTED]
        ServerName www.acme.com
        DocumentRoot /var/www/www.acme.com
</VirtualHost>

<VirtualHost
192.168.1.1:443>
        ServerAdmin [EMAIL PROTECTED]
        ServerName secure.acme.com
        DocumentRoot /var/www/secure.acme.com
        SSLCertificateFile /path/to/original/cert
        SSLCertificateKeyFile /path/to/original/key
</VirtualHost>

<VirtualHost
192.168.1.1>
        ServerAdmin [EMAIL PROTECTED]
        ServerName www.anotherdomain.com
        DocumentRoot /var/www/www.anotherdomain.com
</VirtualHost>

<VirtualHost
192.168.1.1:745> (or other unassigned IP Port)
        ServerAdmin [EMAIL PROTECTED]
        ServerName secure.anotherdomain.com
        DocumentRoot /var/www/secure.acme.com
        SSLCertificateFile /path/to/second/cert
        SSLCertificateKeyFile /path/to/second/key

</VirtualHost>

My question is when running Apache 2.0.X, can one
Listen 443
AND
Listen 745
and obtain the intended result?  I am close to trying this but thought
maybe someone more experienced has already done so and knows
what results I could anticipate.

Andrew Lietzow
The ACL Group, Inc.
______________________________________________________________________ Apache Interface to OpenSSL (mod_ssl) www.modssl.org User Support Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]

Reply via email to