RE: SSL by Domain Name Error

2007-06-18 Thread Rob Archer
Anybody have any suggestions ? -Original Message- From: Rob Archer Sent: 14 June 2007 16:08 To: 'modssl-users@modssl.org' Subject: SSL by Domain Name Error Apache 2.2.4 Windows 2000 Server Have

Re: SSL by Domain Name Error

2007-06-18 Thread Omar W. Hannet
Rob Archer wrote: Anybody have any suggestions ? Have created the key through open ssl and configured apache (using http://raibledesigns.com/wiki/Wiki.jsp?page=ApacheSSL instructions) and can access https via the IP address of the web server but not the domain name. When

RE: SSL by Domain Name Error

2007-06-18 Thread Rob Archer
Thanks for the response, I'm using the following in the httpd.conf file:- IfModule ssl_module SSLMutex default SSLRandomSeed startup builtin SSLRandomSeed connect builtin SSLSessionCache none ErrorLog logs/ssl.log LogLevel info /IfModule VirtualHost 1.2.3.4:443 SSLEngine On SSLCertificateFile

Re: SSL by Domain Name Error

2007-06-18 Thread Omar W. Hannet
What's the result when you set ServerName to your domain name within the virtual host?: VirtualHost 1.2.3.4:443 ServerName example.com SSLEngine On SSLCertificateFile conf/ssl/server.crt SSLCertificateKeyFile conf/ssl/server.key /VirtualHost Rob Archer wrote: Thanks for the response, I'm using