add the cron job
[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 # The length of secret RSA keys
9 key-length = 4096
10
11 # File containing the DH parameters, as generated by openssl (optional)
12 dh-params = /etc/ssl/dh2048.pem
13
14 [timing]
15 # After how many days should the private key be re-generated?
16 max-key-age-days = 180
17 # How many hours should a new private key be left in staging? (0 for no staging)
18 staging-hours = 25
19 # How many days before a certificate expires, should it be renewed?
20 renew-cert-before-expiry-days = 15
21
22 [hooks]
23 # Called after a new certificate has been obtained.
24 # Example usage: Reloading services.
25 post-certchange = /home/user/letsencrypt/cert-hook
26 # Called after a new certificate has been obtained, *if* there also were changes in the private keys
27 # Example usage: Updating TLSA records (with the selector being SubjectPublicKeyInfo) in the zone
28 post-keychange = /home/user/letsencrypt/key-hook
29
30 # Parameters for acme-tiny <https://github.com/diafygi/acme-tiny/>
31 [acme]
32 acme-tiny = /home/user/letsencrypt/acme-tiny/
33 account-key = /etc/ssl/private/letsencrypt/account.key
34 challenge-dir = /srv/acme-challenge/
35
36 # Where to store all the things.
37 [dirs]
38 certs = /etc/ssl/mycerts/letsencrypt
39 keys = /etc/ssl/private/letsencrypt
40 csrs = /etc/ssl/private/letsencrypt
41 backups = /etc/ssl/old/letsencrypt
42
43 [files]
44 # Base name of the live key and certificate
45 live = live
46 # Base name of the staging key and certificate (optional)
47 staging = staging