Duke wrote:
> 
> Just wondering - where'd you find the info for setting up the ports based
> vhost for mod_ssl?  I can't seem to find much on that, and as a result I
> can't run an https.

It's no different from a normal port-based vhost. You just have to
"Listen" to the port and define the port in the <VirtualHost> directive.
E.g. for a vhost on port 8080:

Listen 8080
<VirtualHost machine-name:8080>
  
  .. usual host definition but with additional SSL directives:

  SSLEngine on
  SSLCertificateFile    /path/to/your/cert-file
  SSLCertificateKeyFile /path/to/your/key-file
</VirtualHost>

Rgds,

Owen Boyle.
______________________________________________________________________
Apache Interface to OpenSSL (mod_ssl)                   www.modssl.org
User Support Mailing List                      [EMAIL PROTECTED]
Automated List Manager                            [EMAIL PROTECTED]

Reply via email to