trwnh / namecheap

certbot manual auth hook for DNS-01 with namecheap

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

namecheap

certbot manual auth hook for DNS-01 with namecheap and subdomain cert support

requirements

current limitations

  • SLD/TLD extraction is extremely naive and does not support multipart tlds
    • update: it now handles subdomains thanks to @maservant
  • no cleanup hook, just an auth hook
    • update: a cleanup function has been added to remove old challenges before setting a new one
  • none of the api calls are paginated yet but this probably doesn't matter bc the hook works based on an env var
  • no error checking or handling of any sort
  • was going to be a more robust wrapper of certbot that loops over all your domains, but heck it
  • lol everything is hardcoded so make sure to put in your own username / api key

example usage if you've got existing certs

edit existing renewal conf, e.g. /etc/letsencrypt/renewal/tarawneh.org.conf and make sure authenticator = manual, pref_challs = dns-01,, manual_auth_hook = /path/to/auth.py, manual_public_ip_logging_ok = True

[renewalparams]
account = 1234567890abcdef1234567890abcdef
authenticator = manual
server = https://acme-v02.api.letsencrypt.org/directory
pref_challs = dns-01,
manual_auth_hook = /home/trwnh/bin/namecheap/auth.py
manual_public_ip_logging_ok = True

example usage if you're making a new cert

sudo certbot certonly \
     --preferred-challenges=dns \
     --manual \
     --manual-auth-hook=/path/to/auth.py \
     --agree-tos \
     -d domain.com,*.domain.com

example usage if you're wanting a cert for a subdomain

sudo certbot certonly \
     --preferred-challenges=dns \
     --manual \
     --manual-auth-hook=/path/to/auth.py \
     --agree-tos \
     -d sub.domain.com

maintenance

you should be able to run certbot renew after that and the settings will be remembered? idk yes, this works without intervention

etc

pay me for emotional damages caused by namecheap's api:

interact with me elsewhere:

About

certbot manual auth hook for DNS-01 with namecheap

License:GNU Affero General Public License v3.0


Languages

Language:Python 100.0%