Hello,
I'm new to using SSL. I received a comercial certificate and uploaded it to my server, everything checks out fine.
My site loads when using https, except the images are now broke, and I receive a 302 error when trying http.
Any help would be appreciated, below are all the pieces (I think):
Apache error:
Code:
"Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace."
my virtual host file is
Code:
<VirtualHost *:80>
ServerAdmin admin@mysite.com
ServerName www.mysite.com
ServerAlias mysite.com
DirectoryIndex index.html index.php
DocumentRoot /srv/www/mysite.com/public_html/
<Directory /srv/www/mysite.com/public_html>
Options -Indexes +Includes -ExecCGI -MultiViews +SymLinksIfOwnerMatch
</Directory>
ErrorLog /srv/www/mysite.com/logs/error.log
CustomLog /srv/www/mysite.com/logs/access.log combined
</VirtualHost>
<VirtualHost *:443>
SSLEngine on
SSLCertificateFile /etc/ssl/www_mysite_com.crt
SSLCertificateKeyFile /etc/ssl/www.mysite.com.key
SSLCertificateChainFile /etc/ssl/www_mysite_com.crt
ServerAdmin admin@mysite.com
ServerName www.mysite.com
ServerAlias mysite.com
DirectoryIndex index.html index.php
DocumentRoot /srv/www/mysite.com/public_html/
ErrorLog /srv/www/mysite.com/logs/error.log
CustomLog /srv/www/mysite.com/logs/access.log combined
</VirtualHost>
And my ports.conf file is:
Code:
NameVirtualHost *:80
Listen 80
<IfModule mod_ssl.c>
# If you add NameVirtualHost *:443 here, you will also have to change
# the VirtualHost statement in /etc/apache2/sites-available/default-ssl
# to <VirtualHost *:443>
# Server Name Indication for SSL named virtual hosts is currently not
# supported by MSIE on Windows XP.
NameVirtualHost *:443
Listen 443
</IfModule>
<IfModule mod_gnutls.c>
Listen 443
</IfModule>