Hook script helpers for obtaining LetsEncrypt certificates, using Certbot with manual DNS-01 validation against NameSilo DNS.
Make sure that you have xmllint installed on your system. On Ubuntu:
$ apt-get install libxml2-utils
Add your NameSilo API key to at the top of config.sh
and create a writable tmp
folder in the directory that this file is in.
To make this the default setting for Certbot, add the following to your Certbot config at /etc/letsencrypt/cli.ini
server = https://acme-v02.api.letsencrypt.org/directory
authenticator = manual
preferred-challenges = dns-01
manual_auth_hook = /path/to/hook.sh
manual-cleanup-hook /path/to/cleanup.sh
Note: The server above must be set for DNS validation.
Another option is to just add the hook scripts along with any other options when calling Certbot like so:
$ certbot renew --manual-auth-hook /path/to/hook.sh --manual-cleanup-hook /path/to/cleanup.sh
Debug data will be printed in case of error response from NameSilo.
All of my published code is developed and maintained in spare time, if you would like to support development of this, or any of my published code, I have set up a Liberpay account for just this purpose. Thank you.