Apache and SSL

I am running Apache 2.0.46 on RHEL 3.0 ES. I have about 8 virtualhosts
using port 80. I want to add a virtualhost for port 443. I have the
key installed, etc. When I add a virtualhost for this SSL site in my
ssl.conf, it works. However, all the other port 80 sites now no longer
work. Any help is greatly appreciated.

Thanks,
Darryl
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users [at] modssl.org
Automated List Manager majordomo [at] modssl.org
ddelao [ Mo, 06 Juni 2005 15:49 ] [ ID #825673 ]

RE: Apache and SSL

Hello,

Try putting all virtual host in the ssl.conf file. For the non ssl hosts
make sure sslengine is off. Let me know if this works if you have not
already tried it.

Thanks

-----Original Message-----
From: owner-modssl-users [at] modssl.org
[mailto:owner-modssl-users [at] modssl.org] On Behalf Of Darryl W. DeLao Jr.
Sent: Monday, June 06, 2005 9:49 AM
To: modssl-users [at] modssl.org
Subject: Apache and SSL

I am running Apache 2.0.46 on RHEL 3.0 ES. I have about 8 virtualhosts
using port 80. I want to add a virtualhost for port 443. I have the key
installed, etc. When I add a virtualhost for this SSL site in my
ssl.conf, it works. However, all the other port 80 sites now no longer
work. Any help is greatly appreciated.

Thanks,
Darryl
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users [at] modssl.org
Automated List Manager majordomo [at] modssl.org
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users [at] modssl.org
Automated List Manager majordomo [at] modssl.org
LWaller [ Mo, 06 Juni 2005 17:32 ] [ ID #825674 ]

Re: Apache and SSL

I finally got a solution. Just wondering why such a typical problem not been
answered before... (In you httpd.conf):

Listen 80
Listen 443

#.......


# put your secure virtualhosts here:
NameVirtualHost *:443
<VirtualHost *:443>
ServerName yourDomain
SSLEngine On
SSLCertificatedFile conf/ssl/my-server.cert
SSLCertificateKeyFiule conf/ssl/my-server.key
DocumentRoot "C:/Apache/htdocs/myWebRoot"
</VirtualHost>
#... more secure virtualhosts....

# put your non-secure virtualhosts here:
NameVirtualHost *:80
#.... put the specification of each non-secure hosts here using the same logic
above.





----- Original Message -----
From: "Waller, Lonie" <LWaller [at] vicr.com>
To: <modssl-users [at] modssl.org>
Sent: Monday, June 06, 2005 9:32 AM
Subject: RE: Apache and SSL


Hello,

Try putting all virtual host in the ssl.conf file. For the non ssl hosts
make sure sslengine is off. Let me know if this works if you have not
already tried it.

Thanks

-----Original Message-----
From: owner-modssl-users [at] modssl.org
[mailto:owner-modssl-users [at] modssl.org] On Behalf Of Darryl W. DeLao Jr.
Sent: Monday, June 06, 2005 9:49 AM
To: modssl-users [at] modssl.org
Subject: Apache and SSL

I am running Apache 2.0.46 on RHEL 3.0 ES. I have about 8 virtualhosts
using port 80. I want to add a virtualhost for port 443. I have the key
installed, etc. When I add a virtualhost for this SSL site in my
ssl.conf, it works. However, all the other port 80 sites now no longer
work. Any help is greatly appreciated.

Thanks,
Darryl
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users [at] modssl.org
Automated List Manager majordomo [at] modssl.org
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users [at] modssl.org
Automated List Manager majordomo [at] modssl.org



--
No virus found in this incoming message.
Checked by AVG Anti-Virus.
Version: 7.0.323 / Virus Database: 267.6.2 - Release Date: 6/4/2005


____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users [at] modssl.org
Automated List Manager majordomo [at] modssl.org
Elim Qiu [ Mo, 06 Juni 2005 22:25 ] [ ID #825675 ]

Re: Apache and SSL

Are you using name-based or ip-based VirtualHosts?



--- "Darryl W. DeLao Jr." <ddelao [at] gmail.com> wrote:
> I am running Apache 2.0.46 on RHEL 3.0 ES. I have about 8 virtualhosts
> using port 80. I want to add a virtualhost for port 443. I have the
> key installed, etc. When I add a virtualhost for this SSL site in my
> ssl.conf, it works. However, all the other port 80 sites now no longer
> work. Any help is greatly appreciated.
>
> Thanks,
> Darryl
> ____________________________________________________________ __________
> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> User Support Mailing List modssl-users [at] modssl.org
> Automated List Manager majordomo [at] modssl.org
>
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users [at] modssl.org
Automated List Manager majordomo [at] modssl.org
Bibhash Roy [ Di, 07 Juni 2005 08:09 ] [ ID #827515 ]

Re: Apache and SSL

Also let me know:

Does your Default-site have the option for SSL-Enabling?
If so what is the configuration...you may send me the
Default-virtual-host snippet from ssl.conf if it exists?

If you have defaultsite SSL-Enabled on port 443, then
you cannot have the other SSL-Enabled virtual hosts
accessible on port 443...you need to access them as:

https://SomeVirtualHost_Name:port/
OR
https://SomeVirtualHost_IP:port/



--- "Darryl W. DeLao Jr." <ddelao [at] gmail.com> wrote:
> I am running Apache 2.0.46 on RHEL 3.0 ES. I have about 8 virtualhosts
> using port 80. I want to add a virtualhost for port 443. I have the
> key installed, etc. When I add a virtualhost for this SSL site in my
> ssl.conf, it works. However, all the other port 80 sites now no longer
> work. Any help is greatly appreciated.
>
> Thanks,
> Darryl
> ____________________________________________________________ __________
> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> User Support Mailing List modssl-users [at] modssl.org
> Automated List Manager majordomo [at] modssl.org
>
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users [at] modssl.org
Automated List Manager majordomo [at] modssl.org
Bibhash Roy [ Di, 07 Juni 2005 08:17 ] [ ID #827516 ]
Webserver » gmane.comp.apache.mod-ssl.user » Apache and SSL

Vorheriges Thema: Apache Proxy on SSL enabled server CONNECT hangs
Nächstes Thema: mod_ssl with mod_auth