@dhuyvetter, I’ve just checked your site and the certificate used by zonk.be is the one where the common name is dhuyvetter.eu so, are you sure that your VirtualHost for zonk.be is pointing to the right cert?
<VirtualHost *:433>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
ServerName zonk.be
ServerAlias www.zonk.be
ServerAdmin webmaster@zonk.be
DocumentRoot /var/www/zonk.be/DEFAULT
<Directory /var/www/zonk.be/DEFAULT>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
SSLCertificateFile /etc/letsencrypt/live/zonk.be/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/zonk.be/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateChainFile /etc/letsencrypt/live/zonk.be/chain.pem
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
Thanks! I’ve updated that, but no change, I reloaded Apache.
I’ve got the feeling it’s using my default config (/etc/apache2/sites-available/000-default-le-ssl.conf) which points to certificates in /etc/letsencrypt/live/www.zonk.be/ which are from Mar 5th, so that must be what’s wrong.
#ls -la /etc/letsencrypt/live/www.zonk.be/
total 4
drwxr-xr-x 2 root root 75 Mar 5 06:06 .
drwx------ 10 root root 4096 Jun 4 18:37 ..
lrwxrwxrwx 1 root root 36 Mar 5 06:06 cert.pem -> ../../archive/www.zonk.be/cert15.pem
lrwxrwxrwx 1 root root 37 Mar 5 06:06 chain.pem -> ../../archive/www.zonk.be/chain15.pem
lrwxrwxrwx 1 root root 41 Mar 5 06:06 fullchain.pem -> ../../archive/www.zonk.be/fullchain15.pem
lrwxrwxrwx 1 root root 39 Mar 5 06:06 privkey.pem -> ../../archive/www.zonk.be/privkey15.pem
Then you need to load the VirtualHost for zonk.be before the default one, or you put the conf in 000-default-le-ssl.conf or you change the name of the zonk.conf file to be for example 000-a-zonk.conf or 0000-zonk.conf to be loaded before the default one.