Forum archive
SSL setup issue in IE only (shows ID of initial self signed SSL)
I have edited the /etc/apache2/default file to the following. I install SSL and everything seems fine in Chrome & Firefox and when checked against http://www.sslshopper.com/ssl-checker.html, everything checks out and shows correct SSL ID. The problem I am having is that in IE, it is seeing the unsigned cert that is initially installed. I'm new to this, so I'm guessing I missed something in this file... Any help would be much appreciated. Thanks in advance!
NameVirtualHost *:80
NameVirtualHost *:443
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/
</VirtualHost>
<VirtualHost *:443>
SSLEngine on
SSLCertificateFile /etc/ssl/certs/cert.pem
ServerAdmin webmaster@localhost
DocumentRoot /var/www/
</VirtualHost>
<VirtualHost *:80>
ServerName www.website.com
DocumentRoot /var/www/website
RewriteEngine on
RewriteCond %{HTTPS} ^off$
RewriteCond %{HTTP_HOST} (.*)
RewriteRule ^(.*)/? https://%1$1 [L,R]
</VirtualHost>
<VirtualHost *:80>
ServerName website.com
DocumentRoot /var/www/website
RewriteEngine on
RewriteCond %{HTTPS} ^off$
RewriteCond %{HTTP_HOST} (.*)
RewriteRule ^(.*)/? https://%1$1 [L,R]
</VirtualHost>
<VirtualHost *:443>
ServerName www.website.com
SSLEngine on
SSLCertificateFile /etc/ssl/certs/website.com.crt
SSLCertificateKeyFile /etc/ssl/private/website.key
SSLCertificateChainFile /etc/ssl/certs/gd_bundle.crt
SSLCACertificateFile /etc/ssl/certs/website.com.pem
DocumentRoot /var/www/website
</VirtualHost>
<VirtualHost *:443>
ServerName website.com
SSLEngine on
SSLCertificateFile /etc/ssl/certs/website.com.crt
SSLCertificateKeyFile /etc/ssl/private/website.key
SSLCertificateChainFile /etc/ssl/certs/gd_bundle.crt
SSLCACertificateFile /etc/ssl/certs/website.com.pem
DocumentRoot /var/www/website
</VirtualHost>
ScriptAlias /cgi-bin/ /var/www/cgi-bin/
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
Order allow,deny
allow from all
</Directory>
Thanks Jeremy, I've done quite a bit of research and done some verification but still no luck. The SSL provider is godaddy and I'll contact them and see if they can see anything funky w/ the cert. Thanks for the tips. I'll update if I find out what's going on.