Vitual Hosts not working with SSL
am 08.06.2003 18:27:57 von ComCity
I'm very confused about the Virtual Host configuration in Apache
2.0....stuff that use to work seems like it doesn't and I gotta
think thats because I don't know what I'm doing. ;)
I need to run Named-based virtual hosts as was as IP based virtual hosts.
The IP based virtual hosts need to simultaneously listen on port 80 and port
443 for the same IP address to handle ssl. It seems to me I should be able
to do this:
Listen 80
Listen 443
NameVirtualHost 219.11.62.74
#Name-based Virtual Hosts first
DocumentRoot /home/webs/default
ServerName www.server1.com
DocumentRoot //server2
ServerName www.server2.com
#Ip-based virtual Hosts next
DocumentRoot /home/webs/SSLSite1
ServerName www.SSLSite1.com:80
# Then put this stuff in my SSL conf file.
DocumentRoot /home1/webs/SSLSite1
ServerName www.SSLSite1.com:443
SSLEngine ON
SSLCertificateFile /usr/local/certs/anything.com.crt
SSLCertificateKeyFile /usr/local/certs/anything.com.key
I understand that the limitations of SSL requiring a unique IP and that it
can not be a named-based host...but you should be able to run the
certificate on the same IP if the port is unique. How is this done now?
How do you config a single IP for SSL on port 443 and reuse that IP for the
website on port 80?
Thank You very much.
Michael
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
Re: Vitual Hosts not working with SSL
am 08.06.2003 20:57:26 von Cliff Woolley
On Sun, 8 Jun 2003, ComCity wrote:
> I'm very confused about the Virtual Host configuration in Apache
> 2.0....stuff that use to work seems like it doesn't and I gotta
> think thats because I don't know what I'm doing. ;)
Can you be more specific about what it's (not) doing? Other than the fact
that the snippet you sent in omitted certain important SSL directives
(which are probably present elsewhere in your config file if it worked
under Apache 1.3), the config looks okay to me, at least in terms of
NBVH vs. IPBVH.
--Cliff
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
Re: Vitual Hosts not working with SSL
am 09.06.2003 17:19:53 von ComCity
Thanks Cliff. It was not loaded...Apache failed to start. The solution,
copy the ssl.conf information into the http.conf file without changing a
single thing.
----- Original Message -----
From: "Cliff Woolley"
To: "ComCity"
Cc:
Sent: Sunday, June 08, 2003 11:57 AM
Subject: Re: Vitual Hosts not working with SSL
> On Sun, 8 Jun 2003, ComCity wrote:
>
> > I'm very confused about the Virtual Host configuration in Apache
> > 2.0....stuff that use to work seems like it doesn't and I gotta
> > think thats because I don't know what I'm doing. ;)
>
> Can you be more specific about what it's (not) doing? Other than the fact
> that the snippet you sent in omitted certain important SSL directives
> (which are probably present elsewhere in your config file if it worked
> under Apache 1.3), the config looks okay to me, at least in terms of
> NBVH vs. IPBVH.
>
> --Cliff
>
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org