Requests Let's Encrypt certificates using a HTTP-01 challenge
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 281B

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