summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2016-01-23 23:31:36 -0500
committerAndrew Cady <d@jerkface.net>2016-01-23 23:31:36 -0500
commit331965d2807bd888e7d5dfe3ee3e31f7161b6e30 (patch)
treed1c3e70cc700b7450f3cac21fa96a65bc35c8c42 /README.md
parent60cc8e93ae7a647c5f5da5ee8628c6aca5b58d02 (diff)
add support for multi-domain (subjectAltName) certificates
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 10 insertions, 8 deletions
diff --git a/README.md b/README.md
index 99ae8e0..d2a6e03 100644
--- a/README.md
+++ b/README.md
@@ -3,23 +3,25 @@
3``` 3```
4Let's Encrypt! ACME client 4Let's Encrypt! ACME client
5 5
6Usage: acme-encrypt-exe --key FILE --domain DOMAIN --challenge-dir DIR 6Usage: acme-certify --key FILE --domain DOMAIN --challenge-dir DIR
7 [--domain-dir DIR] [--email ADDRESS] [--terms URL] 7 [--domain-dir DIR] [--email ADDRESS] [--terms URL]
8 [--staging] 8 [--staging]
9 This is a work in progress. 9 This program will generate a signed TLS certificate using the ACME protocol
10 and the free Let's Encrypt! CA.
10 11
11Available options: 12Available options:
12 -h,--help Show this help text 13 -h,--help Show this help text
13 --key FILE filename of your private RSA key 14 --key FILE filename of your private RSA key
14 --domain DOMAIN the domain name to certify 15 --domain DOMAIN the domain name(s) to certify; specify more than once
16 for a multi-domain certificate
15 --challenge-dir DIR output directory for ACME challenges 17 --challenge-dir DIR output directory for ACME challenges
16 --domain-dir DIR directory in which to domain certificates and keys 18 --domain-dir DIR directory in which to domain certificates and keys
17 are stored; the default is to use the domain name as 19 are stored; the default is to use the (first) domain
18 a directory name 20 name as a directory name
19 --email ADDRESS an email address with which to register an account 21 --email ADDRESS an email address with which to register an account
20 --terms URL the terms param of the registration request 22 --terms URL the terms param of the registration request
21 --staging use staging servers instead of live servers 23 --staging use staging servers instead of live servers
22 (certificates will not be real!) 24 (generated certificates will not be trusted!)
23``` 25```
24 26
25This is a simple Haskell script to obtain a certificate from [Let's 27This is a simple Haskell script to obtain a certificate from [Let's