d2535e5ad9ff25a3cb608499cad627fbf9b48f5a
[lets-encrypt-tiny.git] / letsencrypt-tiny.conf.sample
1 # A sample config file for letsencrypt-tiny
2
3 # List of domains for the cert to apply to.
4 domains =
5   example.org
6   example.com
7
8 # File containing the DH parameters, as generated by openssl (optional)
9 dh-params = /etc/ssl/dh2048.pem
10
11 [hooks]
12 # Called after a new certificate has been obtained.
13 # Example usage: Reloading services.
14 post-cert = /home/user/letsencrypt/cert-hook
15 # Called after a new certificate has been obtained, *if* there also were changes in the private keys
16 # Example usage: Updating TLSA records (with the selector being SubjectPublicKeyInfo) in the zone
17 post-key = /home/user/letsencrypt/key-hook
18
19 # Parameters for acme-tiny <https://github.com/diafygi/acme-tiny/>
20 [acme]
21 acme-tiny = /home/user/letsencrypt/acme-tiny/
22 account-key = /etc/ssl/private/letsencrypt/account.key
23 challenge-dir = /srv/acme-challenge/
24
25 # Where to store all the things.
26 [dirs]
27 certs = /etc/ssl/mycerts/letsencrypt
28 keys = /etc/ssl/private/letsencrypt
29 csrs = /etc/ssl/private/letsencrypt
30 backups = /etc/ssl/old/letsencrypt
31
32 [files]
33 # Base name of the live key and certificate
34 live = live
35 # Base name of the staging key and certificate (optional)
36 staging = staging