summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkwadronaut <kwadronaut@leap.se>2016-07-14 09:06:59 +0200
committerkwadronaut <kwadronaut@leap.se>2016-07-14 09:06:59 +0200
commit8bce1104d089408e3bd44dc14643ebb3dc8b6aab (patch)
tree540a0267c2bc148cfa64c884b12893fe783c7f2e
parentdce993f5a274746ff0d8b722455f12208f9ee92a (diff)
Letsencrypt acme client renamed certbot (fixes #8252)
-rw-r--r--pages/docs/platform/guide/keys-and-certificates.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/pages/docs/platform/guide/keys-and-certificates.md b/pages/docs/platform/guide/keys-and-certificates.md
index 52611a9..b0bf94d 100644
--- a/pages/docs/platform/guide/keys-and-certificates.md
+++ b/pages/docs/platform/guide/keys-and-certificates.md
@@ -221,9 +221,9 @@ Install the official acme client
Log in to your webapp node
- server$ git clone https://github.com/letsencrypt/letsencrypt
- server$ cd letsencrypt
- server$ ./letsencrypt-auto --help
+ server$ git clone https://github.com/certbot/certbot
+ server$ cd certbot
+ server$ ./certbot-auto --help
Fetch cert
----------
@@ -234,7 +234,7 @@ Stop apache so the letsencrypt client can bind to port 80:
Fetch the certs
- server$ ./letsencrypt-auto certonly --standalone --email admin@$(hostname -d) -d $(hostname -d) -d api.$(hostname -d) -d $(hostname -f) -d nicknym.$(hostname -d)
+ server$ ./certbot-auto certonly --standalone --email admin@$(hostname -d) -d $(hostname -d) -d api.$(hostname -d) -d $(hostname -f) -d nicknym.$(hostname -d)
This will put the certs and keys into `/etc/letsencrypt/live/DOMAIN/`.