Dehydrated updates for Devuan.
This commit is contained in:
parent
2365db7351
commit
67a9bdd9eb
8 changed files with 455 additions and 361 deletions
|
|
@ -3,7 +3,7 @@
|
|||
# $SCRIPTDIR/config (next to this script)
|
||||
# /usr/local/etc/dehydrated/config
|
||||
# /etc/dehydrated/config
|
||||
# ${PWD}/config (in current working-directory)
|
||||
# $PWD/config (in current working-directory)
|
||||
|
||||
# Which user should dehydrated run as? This will be implictly enforced when running as root.
|
||||
# Default: <unset>
|
||||
|
|
@ -32,7 +32,7 @@
|
|||
#OLDCA="https://acme-v01.api.letsencrypt.org/directory"
|
||||
|
||||
# Which challenge should be used?
|
||||
# Supported values: http-01, dns-01, tls-alpn-01.
|
||||
# Supported values: http-01, dns-01, dns-persist-01, tls-alpn-01.
|
||||
# Default: http-01
|
||||
#CHALLENGETYPE="http-01"
|
||||
|
||||
|
|
@ -40,7 +40,7 @@
|
|||
# This allows overriding the defaults found in the main configuration file.
|
||||
# Additional config files in this directory must be named with a '.sh' ending.
|
||||
# Default: <unset>
|
||||
#CONFIG_D=""
|
||||
CONFIG_D="/etc/dehydrated/conf.d"
|
||||
|
||||
# Base directory for account key, generated certificates and list of domains.
|
||||
# Default: $SCRIPTDIR
|
||||
|
|
@ -48,28 +48,28 @@ BASEDIR="/etc/dehydrated"
|
|||
|
||||
# File containing the list of domains for which to request certificates.
|
||||
# Default: $BASEDIR/domains.txt
|
||||
DOMAINS_TXT="${BASEDIR}/domains"
|
||||
DOMAINS_TXT="$BASEDIR/domains"
|
||||
|
||||
# Directory for per-domain configuration files.
|
||||
# If not set, per-domain configurations are sourced from each certificates output directory.
|
||||
# Default: <unset>
|
||||
DOMAINS_D="${BASEDIR}/domains.d"
|
||||
DOMAINS_D="$BASEDIR/domains.d"
|
||||
|
||||
# Output directory for generated certificates.
|
||||
# Default: ${BASEDIR}/certs
|
||||
#CERTDIR="${BASEDIR}/certs"
|
||||
# Default: $BASEDIR/certs
|
||||
#CERTDIR="$BASEDIR/certs"
|
||||
|
||||
# Output directory for alpn verification certificates.
|
||||
# Default: ${BASEDIR}/alpn-certs
|
||||
#ALPNCERTDIR="${BASEDIR}/alpn-certs"
|
||||
# Default: $BASEDIR/alpn-certs
|
||||
#ALPNCERTDIR="$BASEDIR/alpn-certs"
|
||||
|
||||
# Directory for account keys and registration information.
|
||||
# Default: ${BASEDIR}/accounts
|
||||
#ACCOUNTDIR="${BASEDIR}/accounts"
|
||||
# Default: $BASEDIR/accounts
|
||||
#ACCOUNTDIR="$BASEDIR/accounts"
|
||||
|
||||
# Output directory for challenge-tokens to be served by webserver, or deployed in $HOOK.
|
||||
# Default: /var/www/dehydrated
|
||||
WELLKNOWN="/srv/dehydrated"
|
||||
WELLKNOWN="/var/www/dehydrated"
|
||||
|
||||
# Default keysize for private keys.
|
||||
# Default: 4096
|
||||
|
|
@ -91,7 +91,7 @@ WELLKNOWN="/srv/dehydrated"
|
|||
# Program or function called at certain stages of processing.
|
||||
# BASEDIR and WELLKNOWN variables are exported and can be used in an external program.
|
||||
# Default: <unset>
|
||||
HOOK="${BASEDIR}/hooks/default"
|
||||
HOOK="$BASEDIR/hooks/default"
|
||||
|
||||
# Chain clean_challenge|deploy_challenge arguments together into one hook call per certificate?
|
||||
# Default: no
|
||||
|
|
@ -103,7 +103,7 @@ HOOK="${BASEDIR}/hooks/default"
|
|||
|
||||
# Regenerate private keys instead of just signing new certificates on renewal?
|
||||
# Default: yes
|
||||
PRIVATE_KEY_RENEW="no"
|
||||
#PRIVATE_KEY_RENEW="yes"
|
||||
|
||||
# Create an extra private key for rollover?
|
||||
# Default: no
|
||||
|
|
@ -136,7 +136,7 @@ LOCKFILE="/run/dehydrated.lock"
|
|||
|
||||
# Issuer chain cache directory.
|
||||
# Default: $BASEDIR/chains
|
||||
#CHAINCACHE="${BASEDIR}/chains"
|
||||
#CHAINCACHE="$BASEDIR/chains"
|
||||
|
||||
# Automatic cleanup?
|
||||
# Default: no
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue