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.

36 lines
963 B

########################################################
# This is the main config file for the Dehydrated #
# AlibabaCloud DNS-01 challenge Hook script #
# #
# Default values of this config are in comments #
########################################################
# requirements: openssl, bash, curl, jq, dig
# Alicloud Public API Credentials
API_KEY_ID='' # required
API_KEY_SECRET='' # required
# Debugging (yes/no)
DEBUG="no"
# Extra options passed to the curl binary (default: <unset>)
CURL_OPTS=""
# Configure notifications
MAIL_FROM="dehydrated@localhost"
MAIL_RCPT="root@localhost"
# Configure certificate and key locations for deployment
DEPLOYED_CERTDIR=/etc/ssl/certs
DEPLOYED_KEYDIR=/etc/ssl/private
# Email Sending Method Options
# + SENDMAIL (default)
# + SMTP
MAIL_METHOD=SENDMAIL
# SMTP options
#SMTP_DOMAIN=localhost
#SMTP_SERVER=
#SMTP_PORT=25