You can register multiple domains to a single SSL certificate. This is particularly useful if you are hosting multiple domains on one server. This command adds more domains to your existing certificate.

<pre lang="bash">
certbot --expand -d existing.com -d newdomain1.com -d newdomain2.com

Check if the domains were added.

<pre lang="bash">
certbot certificates

Certbot certificates are valid for 90 days, but they automatically renew themselves if expiration is less than 30 days. If you need to renew manually for some odd reason, you can run this command. You can also perform a dry-run before renewing.

<pre lang="bash">
certbot renew
certbot renew --dry-run