letsencrypt-change-the-base-domain-name

A1WEBSITEPRO QuestionsCategory: Questionsletsencrypt-change-the-base-domain-name
Randal Myers asked 7 years ago

Using the LetsEncrypt on my server it takes the alphabetical approach when it issues the SSL. So if I have several domain names on my server it takes the one that is alphabetically first then applies that name to the consecutive domains and subdomains. How can I make each SSL reflect the name of just that domain without reflecting the name of the other domains on my server?
 
letsencrypt --apache

letsencrypt-change-the-base-domain-name was last modified: December 22nd, 2016 by Randal Myers
1 Answers
Best Answer
Maximus Mccullough Staff answered 7 years ago

What you want to do is use –force-renewal . Your syntax would look something like this.
letsencrypt --apache -d example.com -d www.example.com --force-renewal

If you are using any other sub-domains be sure to include them like this.

letsencrypt --apache -d example.com -d www.example.com -d mysql.example.com --force-renewal

References

http://letsencrypt.readthedocs.io/en/latest/using.html#certbot-command-line-options

Only cool people share!

https://certbot.eff.org/

https://community.letsencrypt.org/t/change-base-domain-name-for-lets-encrypt-ssl-certificate-in-certbot/16955/3

Answer for letsencrypt-change-the-base-domain-name was last modified: December 22nd, 2016 by Maximus Mccullough