- move smanager panel in package [SME: 12916] - add Requires - add templates from smeserver-letsencrypt - use /var/www/html/.well-known/acme-challenge
31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
# Path to a directory containing additional config files, allowing to override
|
|
# the defaults found in the main configuration file. Additional config files
|
|
# in this directory needs to be named with a '.sh' ending.
|
|
# default: <unset>
|
|
#CONFIG_D=
|
|
|
|
# Directory for per-domain configuration files.
|
|
# If not set, per-domain configurations are sourced from each certificates output directory.
|
|
# default: <unset>
|
|
#DOMAINS_D=
|
|
|
|
# Base directory for account key, generated certificates and list of domains (default: $SCRIPTDIR -- uses config directory if undefined)
|
|
#BASEDIR=$SCRIPTDIR
|
|
BASEDIR="/etc/dehydrated"
|
|
|
|
# File containing the list of domains to request certificates for (default: $BASEDIR/domains.txt)
|
|
DOMAINS_TXT="${BASEDIR}/domains.txt"
|
|
|
|
# Output directory for generated certificates
|
|
CERTDIR="${BASEDIR}/certs"
|
|
|
|
# Output directory for alpn verification certificates
|
|
ALPNCERTDIR="${BASEDIR}/alpn-certs"
|
|
|
|
# Directory for account keys and registration information
|
|
ACCOUNTDIR="${BASEDIR}/accounts"
|
|
|
|
# Output directory for challenge-tokens to be served by webserver or deployed in HOOK (default: /var/www/dehydrated)
|
|
WELLKNOWN="/var/www/html/.well-known/acme-challenge"
|
|
|