My domain is: tvaluer.com
I added certbot and the certificate was installed for both www and without
My web server is: apache on ubuntu18.04 and certbot 0.27.0
tvaluer.conf:
<VirtualHost *:80> ServerAdmin webmaster@localhost ServerName tvaluer.com ServerAlias www.tvaluer.com DocumentRoot /var/www/html <Directory /var/www/html> Options FollowSymLinks AllowOverride All Require all granted </Directory> ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined </VirtualHost>
tvaluer-ssl.conf :
> <VirtualHost *:443>
>
> ServerAdmin webmaster@localhost
>
> ServerName tvaluer.com
>
> ServerAlias www.tvaluer.com
>
> DocumentRoot /var/www/html
>
> <Directory /var/www/html>
>
> Options FollowSymLinks
>
> AllowOverride All
>
> Require all granted
>
> </Directory>
>
> ErrorLog ${APACHE_LOG_DIR}/error.log
>
> CustomLog ${APACHE_LOG_DIR}/access.log combined
>
> SSLCertificateFile /etc/letsencrypt/live/tvaluer.com/fullchain.pem
>
> SSLCertificateKeyFile /etc/letsencrypt/live/tvaluer.com/privkey.pem
>
> Include /etc/letsencrypt/options-ssl-apache.conf
>
> </VirtualHost>
I enabled ssl_mod and restarted apache for a million times, but still no luck... any ideas?