Hi folks,
So I have an existing SSL for mail.domain.com mail.domain1.com visa version.
What is the best way to add new domains to existing SSL certificate? I originally used the following and I was wondering I could just add the new domain this this command I used for Certbot.
certbot certonly --cert-name mailcert --dns-digitalocean --dns-digitalocean-credentials ~/.secrets/certbot/digitalocean.ini --dns-digitalocean-propagation-seconds 60 --post-hook "service postfix reload; service dovecot reload;" -d mail.domain1.com,mail.domain2.com
Could I use this to add the new domain?
certbot certonly --cert-name mailcert --dns-digitalocean --dns-digitalocean-credentials ~/.secrets/certbot/digitalocean.ini --dns-digitalocean-propagation-seconds 60 --post-hook "service postfix reload; service dovecot reload;" -d mail.domain1.com,mail.domain2.com,mail.domain.com
Regards.