SSL


# list all current certificates

    sudo certbot certificates

# renew existing certificates

    sudo systemctl stop apache2
    sudo certbot certonly --force-renew -d domain1.com -d domain2.com -d domain3.com etc…
    sudo systemctl start apache2