Requests Let's Encrypt certificates using a user-supplied DNS hook
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config 274B

12345678910111213
  1. #!/usr/bin/env bash
  2. WELLKNOWN=/letsencrypt
  3. BASEDIR=/letsencrypt
  4. CONTACT_EMAIL=$EMAIL
  5. KEY_ALGO=${ALGORITHM:-secp384r1}
  6. if [ -z ${STAGING+-} ]; then
  7. CA="https://acme-v02.api.letsencrypt.org/directory"
  8. else
  9. CA="https://acme-staging-v02.api.letsencrypt.org/directory"
  10. fi