Obtains certificates from Let's Encrypt, using Lexicon to answer DNS-based challenges
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

config.sh 214B

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