Have slowly been working on a LetsEncrypt module. But, for renewal is very easy.
For auto-renew you just need to add a cron job through SSH:
filename: lets-encrypt
location: /etc/cron.d/
Change 0 0 1 * * to your preferred renewal schedule.
This renews ALL active certificates.
For auto-renew you just need to add a cron job through SSH:
filename: lets-encrypt
location: /etc/cron.d/
Code:
0 0 1 * * root [ service apache2 stop ] && [ ./certbot/certbot-auto renew --agree-tos ] && [ service apache2 start ]
This renews ALL active certificates.