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: clash-finder.com www.clash-finder.com
I ran this command: sudo certbot --apache
It produced this output:
IMPORTANT NOTES:
- Congratulations! Your certificate and chain have been saved at:
/etc/letsencrypt/live/clash-finder.com/fullchain.pem
Your key file has been saved at:
/etc/letsencrypt/live/clash-finder.com/privkey.pem
Your cert will expire on 2020-06-06. To obtain a new or tweaked
version of this certificate in the future, simply run certbot
again. To non-interactively renew all of your certificates, run
âcertbot renewâ
My web server is (include version): Apache/2.4.29 (Ubuntu)
The operating system my web server runs on is (include version):
Distributor ID: Ubuntu
Description: Ubuntu 18.04.2 LTS
Release: 18.04
Codename: bionic
My hosting provider, if applicable, is: hosting on my own 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): no
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
My webserver config:
/etc/apache2/sites-available$ ll
total 24
drwxr-xr-x 2 root root 4096 Mär 8 10:42 ./
drwxr-xr-x 8 root root 4096 Mär 8 11:19 âŚ/
-rw-râr-- 1 root root 1616 Mär 8 11:09 000-default.conf
-rw-râr-- 1 root root 1471 Mär 8 11:05 000-default-le-ssl.conf
-rw-râr-- 1 root root 6338 Jul 16 2019 default-ssl.conf
000-default.conf:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/clash/public/
<Directory /var/www/html/clash/public/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
ErrorLog {APACHE_LOG_DIR}/error.log
CustomLog {APACHE_LOG_DIR}/access.log combined
RewriteEngine on
RewriteCond %{SERVER_NAME} =clash-finder.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
000-default-le-ssl.conf:
ServerAdmin webmaster@localhost DocumentRoot /var/www/html/clash/public/<Directory /var/www/html/clash/public/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
ErrorLog {APACHE_LOG_DIR}/error.log
CustomLog {APACHE_LOG_DIR}/access.log combined
This certificate is installed:
sudo certbot certificates
Saving debug log to /var/log/letsencrypt/letsencrypt.log
Found the following certs:
Certificate Name: clash-finder.com
Domains: clash-finder.com www.clash-finder.com
Expiry Date: 2020-06-06 09:06:20+00:00 (VALID: 89 days)
Certificate Path: /etc/letsencrypt/live/clash-finder.com/fullchain.pem
Private Key Path: /etc/letsencrypt/live/clash-finder.com/privkey.pem
What is wrong with my apache configuration?