Forum Moderators: phranque
Running Fedora Core 4, I have Apache working and can access my localsite via http like this:
[mysite...]
My httpd.conf has the following :
<VirtualHost 192.168.1.90:80>
ServerName messages
DocumentRoot /var/www/messages
which works fine.
For the SSL config, I've installed a trial certificate, which I setup under the domain messages.mysite.com. I put the keys in the directories listed below. In my httpd.conf, I've created the entry (httpd starts fine) :
<VirtualHost 192.168.1.90:443>
ServerName messages.mysite.com
DocumentRoot /var/www/messages
SSLEngine On
SSLCertificateFile /etc/pki/tls/certs/messages.crt
SSLCertificateKeyFile /etc/pki/tls/private/messages.key
I created a hosts entry for messages.mysite.com to point to the above IP, but I can't access the SSL site.
Any pointers on what I could check? I'm sure it's something simple, but I've spent 2 days on this and it's time to ask the experts!
Thanks!
BFC
[messages...]