Please fill out the fields below so we can help you better. Note: you must provide your domain name to get help. Domain names for issued certificates are all made public in Certificate Transparency logs (e.g. https://crt.sh/?q=example.com), so withholding your domain name here does not increase secrecy, but only makes it harder for us to provide help.
My domain is: walk3r.info
I ran this command:
It produced this output:
My web server is (include version): apache2
The operating system my web server runs on is (include version): debian 10
My hosting provider, if applicable, is: private server
I can login to a root shell on my machine (yes or no, or I don’t know):yes
I’m using a control panel to manage my site (no, or provide the name and version of the control panel): wordpress dashboard
The version of my client is (e.g. output of certbot --version
or certbot-auto --version
if you’re using Certbot):certbot 0.31.0
I can’t figure out my problem. My website works well on http. but when i redirect to https with apache2 the website don’t show up correctly.
My apache2.conf:
<VirtualHost *:80>
ServerName walk3r.info
DocumentRoot /var/www/wordpress
#Redirect permanent / https://walk3r.info/
</VirtualHost
<IfModule mod_ssl.c
<VirtualHost *:443
ServerName walk3r.info
ServerAlias www.walk3r.info
ServerAdmin contact@domain.tld
DocumentRoot /var/www/wordpress
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
SSLCertificateFile /etc/letsencrypt/live/walk3r.info/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/walk3r.info/privkey.pem
SSLCertificateChainFile /etc/letsencrypt/live/walk3r.info/fullchain.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost
</IfModule