After installing Let's Encrypt I get white screen

The site will just not load after successfully installing Let's Encrypt. Submitted s ticket and they confirmed the cert and connection to my Linode is working. Any suggestions?

Here's my conf config:

# domain: sturnbull.com
# public: /var/www/html/sturnbull.com/public_html/
<VirtualHost *:80>
  ServerName sturnbull.com
  ServerAlias www.sturnbull.com

  RewriteEngine on
  RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,QSA,R=permanent]

  ErrorLog /var/www/html/sturnbull.com/log/error.log
  CustomLog /var/www/html/sturnbull.com/log/access.log combined

</VirtualHost>
<VirtualHost *:443>
  # Setting the cert stuff
  SSLEngine On
  SSLCertificateFile /etc/letsencrypt/live/sturnbull.com/fullchain.pem
  SSLCertificateKeyFile /etc/letsencrypt/live/sturnbull.com/privkey.pem
  #SSLCACertificateFile /etc/ssl/certs/ca-certificates.crt

  # Admin email, Server Name (domain name), and any aliases
  ServerAdmin blazin.media@gmail.com
  ServerName sturnbull.com
  ServerAlias www.sturnbull.com
  # Index file and Document Root (where the public files are located)
  DirectoryIndex index.html index.php
  DocumentRoot /var/www/html/sturnbull.com/public_html
  # Log file locations
  LogLevel warn
  ErrorLog /var/www/html/sturnbull.com/log/error.log
  CustomLog /var/www/html/sturnbull.com/log/access.log combined
</VirtualHost>
<Directory /var/www/html/sturnbull.com/public_html>
  Options Indexes FollowSymLinks
  AllowOverride All
  Require all granted
</Directory>

2 Replies

5cott - do you mean you get a 'login' page or you get a white page with nothing else and no text?

I get a white (completely blank) screen and nothing when I "view Source".

There is, however, a favicon in the browser tab.

Reply

Please enter an answer
Tips:

You can mention users to notify them: @username

You can use Markdown to format your question. For more examples see the Markdown Cheatsheet.

> I’m a blockquote.

I’m a blockquote.

[I'm a link] (https://www.google.com)

I'm a link

**I am bold** I am bold

*I am italicized* I am italicized

Community Code of Conduct