I have two redirects under etc/httpd/conf.d/
ragnarok-rp.conf:
<VirtualHost *:80>
ServerName ragnarok-rp.com
Redirect / https://ragnarok-rp.com
RewriteEngine on
RewriteCond %{SERVER_NAME} =ragnarok-rp.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>
and ragnarokrp-le-ssl.conf
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerName ragnarok-rp.com
Redirect / https://ragnarok-rp.com
SSLCertificateFile /etc/letsencrypt/live/ragnarok-rp.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/ragnarok-rp.com/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>
</IfModule>
Are either of these wrong, or is there likely another re-direct floating out there somewhere?
There is an IfModule modssl in the second conf that doesn't appear , and a /virtual host in the first conf that also doesn't appear on this post, but is in the file itself.