]> git.street.me.uk Git - andy/dehydrated.git/blame - docs/examples/config
initial support for configuration on per-certificate base (#105)
[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
785ffa55
AM
34# Output directory for generated certificates
35#CERTDIR="${BASEDIR}/certs"
36
1e33cfe5
AB
37# Output directory for challenge-tokens to be served by webserver or deployed in HOOK (default: $BASEDIR/.acme-challenges)
38#WELLKNOWN="${BASEDIR}/.acme-challenges"
39
40# Location of private account key (default: $BASEDIR/private_key.pem)
adef4076 41#ACCOUNT_KEY="${BASEDIR}/private_key.pem"
0e92aba2 42
d1e573c0 43# Location of private account registration information (default: $BASEDIR/private_key.json)
adef4076 44#ACCOUNT_KEY_JSON="${BASEDIR}/private_key.json"
d1e573c0 45
cb6dc26c
LS
46# Default keysize for private keys (default: 4096)
47#KEYSIZE="4096"
48
cb6dc26c
LS
49# Path to openssl config file (default: <unset> - tries to figure out system default)
50#OPENSSL_CNF=
51
c24843c6 52# Program or function called in certain situations
53#
f527eef8 54# After generating the challenge-response, or after failed challenge (in this case altname is empty)
e32ea24c 55# Given arguments: clean_challenge|deploy_challenge altname token-filename token-content
c24843c6 56#
57# After successfully signing certificate
e32ea24c 58# Given arguments: deploy_cert domain path/to/privkey.pem path/to/cert.pem path/to/fullchain.pem
c24843c6 59#
60# BASEDIR and WELLKNOWN variables are exported and can be used in an external program
cb6dc26c 61# default: <unset>
c24843c6 62#HOOK=
e300c0a1 63
6e048f7f
GD
64# Chain clean_challenge|deploy_challenge arguments together into one hook call per certificate (default: no)
65#HOOK_CHAIN="no"
66
da2795d3
ON
67# Minimum days before expiration to automatically renew certificate (default: 30)
68#RENEW_DAYS="30"
3dbbb461 69
e608dc2b
LS
70# Regenerate private keys instead of just signing new certificates on renewal (default: yes)
71#PRIVATE_KEY_RENEW="yes"
af2bc7a9 72
c71ca3a8
MG
73# Which public key algorithm should be used? Supported: rsa, prime256v1 and secp384r1
74#KEY_ALGO=rsa
75
cb6dc26c 76# E-mail to use during the registration (default: <unset>)
ea5b70a3 77#CONTACT_EMAIL=
a87b9264 78
79# Lockfile location, to prevent concurrent access (default: $BASEDIR/lock)
80#LOCKFILE="${BASEDIR}/lock"
8e77ba5e
LS
81
82# Option to add CSR-flag indicating OCSP stapling to be mandatory (default: no)
83#OCSP_MUST_STAPLE="no"