]> git.street.me.uk Git - andy/dehydrated.git/blame - docs/examples/config
renamed "config.sh" to "config"
[andy/dehydrated.git] / docs / examples / config
CommitLineData
cb6dc26c 1########################################################
a1cb7ccc 2# This is the main config file for letsencrypt.sh #
cb6dc26c
LS
3# #
4# This file is looked for in the following locations: #
d5b28586
LS
5# $SCRIPTDIR/config (next to this script) #
6# /usr/local/etc/letsencrypt.sh/config #
7# /etc/letsencrypt.sh/config #
8# ${PWD}/config (in current working-directory) #
cb6dc26c
LS
9# #
10# Default values of this config are in comments #
11########################################################
f11bb1db 12
09729186
LS
13# Path to certificate authority (default: https://acme-v01.api.letsencrypt.org/directory)
14#CA="https://acme-v01.api.letsencrypt.org/directory"
15
16# Path to license agreement (default: https://letsencrypt.org/documents/LE-SA-v1.0.1-July-27-2015.pdf)
17#LICENSE="https://letsencrypt.org/documents/LE-SA-v1.0.1-July-27-2015.pdf"
cb6dc26c 18
e925b293
MG
19# Which challenge should be used? Currently http-01 and dns-01 are supported
20#CHALLENGETYPE="http-01"
21
a1cb7ccc
DB
22# Path to a directory containing additional config files, allowing to override
23# the defaults found in the main configuration file. Additional config files
24# in this directory needs to be named with a '.sh' ending.
25# default: <unset>
26#CONFIG_D=
27
4a6f7974
MG
28# Base directory for account key, generated certificates and list of domains (default: $SCRIPTDIR -- uses config directory if undefined)
29#BASEDIR=$SCRIPTDIR
30
a3e5ed36
DB
31# File containing the list of domains to request certificates for (default: $BASEDIR/domains.txt)
32#DOMAINS_TXT="${BASEDIR}/domains.txt"
33
1e33cfe5
AB
34# Output directory for challenge-tokens to be served by webserver or deployed in HOOK (default: $BASEDIR/.acme-challenges)
35#WELLKNOWN="${BASEDIR}/.acme-challenges"
36
37# Location of private account key (default: $BASEDIR/private_key.pem)
adef4076 38#ACCOUNT_KEY="${BASEDIR}/private_key.pem"
0e92aba2 39
d1e573c0 40# Location of private account registration information (default: $BASEDIR/private_key.json)
adef4076 41#ACCOUNT_KEY_JSON="${BASEDIR}/private_key.json"
d1e573c0 42
cb6dc26c
LS
43# Default keysize for private keys (default: 4096)
44#KEYSIZE="4096"
45
cb6dc26c
LS
46# Path to openssl config file (default: <unset> - tries to figure out system default)
47#OPENSSL_CNF=
48
c24843c6 49# Program or function called in certain situations
50#
f527eef8 51# After generating the challenge-response, or after failed challenge (in this case altname is empty)
e32ea24c 52# Given arguments: clean_challenge|deploy_challenge altname token-filename token-content
c24843c6 53#
54# After successfully signing certificate
e32ea24c 55# Given arguments: deploy_cert domain path/to/privkey.pem path/to/cert.pem path/to/fullchain.pem
c24843c6 56#
57# BASEDIR and WELLKNOWN variables are exported and can be used in an external program
cb6dc26c 58# default: <unset>
c24843c6 59#HOOK=
e300c0a1 60
6e048f7f
GD
61# Chain clean_challenge|deploy_challenge arguments together into one hook call per certificate (default: no)
62#HOOK_CHAIN="no"
63
da2795d3
ON
64# Minimum days before expiration to automatically renew certificate (default: 30)
65#RENEW_DAYS="30"
3dbbb461 66
e608dc2b
LS
67# Regenerate private keys instead of just signing new certificates on renewal (default: yes)
68#PRIVATE_KEY_RENEW="yes"
af2bc7a9 69
c71ca3a8
MG
70# Which public key algorithm should be used? Supported: rsa, prime256v1 and secp384r1
71#KEY_ALGO=rsa
72
cb6dc26c 73# E-mail to use during the registration (default: <unset>)
ea5b70a3 74#CONTACT_EMAIL=
a87b9264 75
76# Lockfile location, to prevent concurrent access (default: $BASEDIR/lock)
77#LOCKFILE="${BASEDIR}/lock"