Hi to All,
I've two VPS Debian 8 based, Apache2 web server, that I'm going to upgrade to another Linux distro, process that will take a few months.
Every certs made by Let'sEncrypt and different domains in a single certificate.
Actually, "certbot-auto" seems that it is no longer usable:
Your system is not supported by certbot-auto anymore.
Certbot will no longer receive updates.
Please visit https://certbot.eff.org/ to check for other alternatives.
So I think (suggest me if it's the right way) to migrate to "acme.sh".
Is it correct to do this procedure? ->
- remove "certbot-auto" ->
certbot delete
- remove old certbot "garbage" ->
apt remove --purge certbot python-certbot
- Install acme.sh ->
curl https://get.acme.sh | sh
- run "acme.sh" to obtain the certs ->
acme.sh --issue --apache -d example.com -d www.example.com -d cp.example.com -d test.org -d try.net
- create the new cron entry ->
0 0 * * * "/home/user/.acme.sh"/acme.sh --cron --home "/etc/letsencrypt/live/myserver.org/" > /dev/null
Could be fine?
Many thanks!!
Davide