Linode Forum
Linode Community Forums
 FAQFAQ    SearchSearch    MembersMembers      Register Register 
 LoginLogin [ Anonymous ] 
Post new topic  Reply to topic
Author Message
PostPosted: Sun Jun 09, 2013 11:30 am 
Offline
Newbie

Joined: Sat Jun 08, 2013 11:15 pm
Posts: 3
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>


Top
   
PostPosted: Sun Jun 09, 2013 3:16 pm 
Offline
Senior Member

Joined: Fri Feb 17, 2012 8:20 pm
Posts: 365
What's the domain name?


Top
   
Display posts from previous:  Sort by  
Post new topic  Reply to topic


Who is online

Users browsing this forum: No registered users and 4 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  
RSS

Powered by phpBB® Forum Software © phpBB Group