summaryrefslogtreecommitdiffstats
path: root/system/letsencrypt
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo <willysr@slackbuilds.org>2016-11-11 08:09:28 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2016-11-11 08:09:28 +0700
commit5048a64ce51801e723a1aa3eee31abbbb8322b2c (patch)
tree597f663064759509a4670e8b127bbee842ea30b1 /system/letsencrypt
parent9261652a8884618bc2f0da2e89b59c8b90b5afbf (diff)
downloadslackbuilds-5048a64ce51801e723a1aa3eee31abbbb8322b2c.tar.gz
slackbuilds-5048a64ce51801e723a1aa3eee31abbbb8322b2c.tar.xz
system/letsencrypt: Update renewal instructions.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/letsencrypt')
-rw-r--r--system/letsencrypt/README.Slackware8
1 files changed, 4 insertions, 4 deletions
diff --git a/system/letsencrypt/README.Slackware b/system/letsencrypt/README.Slackware
index 1ff60af3be..4a2e7e15fd 100644
--- a/system/letsencrypt/README.Slackware
+++ b/system/letsencrypt/README.Slackware
@@ -8,13 +8,13 @@ Since Slackware is not yet supported, instead of running "letsencrypt-auto certo
as instructed, you can run "letsencrypt certonly" to install certificates manually using standalone plugin.
Here's what i use to create a certificate using port 443 for domain validation
-certbot certonly --webroot-path=<DOCUMENT-ROOT> --standalone-supported-challenges tls-sni-01 -d <DOMAIN-NAME> \
+certbot certonly --webroot-path=<DOCUMENT-ROOT> --preferred-challenges tls-sni-01 -d <DOMAIN-NAME> \
--email <ADMIN-EMAIL> --renew-by-default --agree-tos --text --standalone
If you want to use port 80 for domain validation, replace
---standalone-supported-challenges tls-sni-01
+--preferred-challenges tls-sni-01
with
---standalone-supported-challenges http-01
+--preferred-challenges http-01
NOTE:
You need to make sure that the port (80 or 443) is NOT USED before running above command (ie. you may need to
@@ -58,7 +58,7 @@ rsa-key-size = 4096
# Uncomment to use the standalone authenticator on port 443
# authenticator = standalone
-# standalone-supported-challenges = tls-sni-01
+# preferred-challenges = tls-sni-01
# Uncomment to use the webroot authenticator. Replace webroot-path with the
# path to the public_html / webroot folder being served by your web server.