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.sh 233B

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