Greetings,
Due to the way GoDaddy does their Web site hosting I had to go this route for getting certbot to create my certificate for my mail server. My server is CentOS Linux release 7.9.2009 (Core) and my Certbot is certbot 1.11.0.
I have this set for the Virtual server
<VirtualHost *:80>
DocumentRoot /var/www/html
ServerName mail.nelsonsgoldenyears.com
</VirtualHost>
I ran this command to create the certificate.
certbot certonly -d mail.nelsonsgoldenyears.com -a apache \
--deploy-hook "systemctl restart postfix; systemctl restart dovecot"
I would like to know what command would be required to renew the certificate?
I would guess just running certbot renew or certbot renew -a apache.
Thank you.