Apache and SSL

Apache and SSL

am 06.06.2005 15:49:27 von ddelao

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@modssl.org
Automated List Manager majordomo@modssl.org

RE: Apache and SSL

am 06.06.2005 17:32:01 von LWaller

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=20

-----Original Message-----
From: owner-modssl-users@modssl.org
[mailto:owner-modssl-users@modssl.org] On Behalf Of Darryl W. DeLao Jr.
Sent: Monday, June 06, 2005 9:49 AM
To: modssl-users@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@modssl.org
Automated List Manager majordomo@modssl.org
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org

Re: Apache and SSL

am 06.06.2005 22:25:21 von Elim Qiu

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

ServerName yourDomain
SSLEngine On
SSLCertificatedFile conf/ssl/my-server.cert
SSLCertificateKeyFiule conf/ssl/my-server.key
DocumentRoot "C:/Apache/htdocs/myWebRoot"

#... 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"
To:
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@modssl.org
[mailto:owner-modssl-users@modssl.org] On Behalf Of Darryl W. DeLao Jr.
Sent: Monday, June 06, 2005 9:49 AM
To: modssl-users@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@modssl.org
Automated List Manager majordomo@modssl.org
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@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@modssl.org
Automated List Manager majordomo@modssl.org

Re: Apache and SSL

am 07.06.2005 08:09:34 von Bibhash Roy

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



--- "Darryl W. DeLao Jr." 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@modssl.org
> Automated List Manager majordomo@modssl.org
>
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org

Re: Apache and SSL

am 07.06.2005 08:17:18 von Bibhash Roy

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." 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@modssl.org
> Automated List Manager majordomo@modssl.org
>
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org