Obtains certificates from Let's Encrypt, using Lexicon to answer DNS-based challenges
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 217B

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