I could try removing the defaul-ssl.conf and creating seperate conf files.
This is my first time trying to create using certbot (my old server I’d created certs from lets encrypt when first released)
here is a copy of the default-ssl.conf (I tried copying the ssl certs from my old server and pointing to them, so that’s why it’s showing cert files )
<VirtualHost *:443>
# 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 www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
# 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
SSLEngine on
SSLCertificateFile /etc/ssl/certs/ssl-cert-snakeoil.pem
SSLCertificateKeyFile /etc/ssl/private/ssl-cert-snakeoil.key
Include /etc/letsencrypt/options-ssl-apache.conf
<VirtualHost ewiscombe.com *:443>
ServerName ewiscombe.com
ServerAdmin webmaster@localhost
ServerAlias www.ewiscombe.com
DocumentRoot /var/www/html/ewiscombe.com/
CustomLog /var/log/apache2/www.test.ewiscombe.com-access.log combined
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/ewiscombe.com/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/ewiscombe.com/privkey.pem
# Server Certificate Chain:
# Point SSLCertificateChainFile at a file containing the
# concatenation of PEM encoded CA certificates which form the
# certificate chain for the server certificate. Alternatively
# the referenced file can be the same as SSLCertificateFile
# when the CA certificates are directly appended to the server
# certificate for convinience.
SSLCertificateChainFile /etc/letsencrypt/live/ewiscombe.com/chain.pem
ServerName wiscombearabians.com
ServerAdmin webmaster@localhost
ServerAlias www.wiscombearabians.com
DocumentRoot /var/www/html/wiscombearabians.com/
CustomLog /var/log/apache2/wiscombearabians.com-access.log combined
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/wiscombearabians.com/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/wiscombearabians.com/privkey.pem
SSLCertificateChainFile /etc/letsencrypt/live/wiscombearabians.com/chain.pem
<VirtualHost eddotfarms.com *:443>
ServerName eddotfarms.com
ServerAdmin webmaster@localhost
ServerAlias www.eddotfarms.com
DocumentRoot /var/www/html/wiscombearabians.com/
CustomLog /var/log/apache2/wiscombearabians.com-access.log combined
#SSLEngine on
#SSLCertificateFile /etc/letsencrypt/live/wiscombearabians.com/cert.pem
#SSLCertificateKeyFile /etc/letsencrypt/live/wiscombearabians.com/privkey.pem
#SSLCertificateChainFile /etc/letsencrypt/live/wiscombearabians.com/chain.pem