From 27e0f97c9df37cad8c4ba0ef1d133fa57afb7469 Mon Sep 17 00:00:00 2001 From: xenolf Date: Thu, 31 May 2018 19:39:33 +0200 Subject: [PATCH] Fix wrong repository URL (#563) --- README.md | 2 +- cli.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 65410076..abc39a99 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ COMMANDS: GLOBAL OPTIONS: --domains value, -d value Add a domain to the process. Can be specified multiple times. --csr value, -c value Certificate signing request filename, if an external CSR is to be used - --server value, -s value CA hostname (and optionally :port). The server certificate must be trusted in order to avoid further modifications to the client. (default: "https://acme-v01.api.letsencrypt.org/directory") + --server value, -s value CA hostname (and optionally :port). The server certificate must be trusted in order to avoid further modifications to the client. (default: "https://acme-v02.api.letsencrypt.org/directory") --email value, -m value Email used for registration and recovery contact. --accept-tos, -a By setting this flag to true you indicate that you accept the current Let's Encrypt terms of service. --key-type value, -k value Key type to use for private keys. Supported: rsa2048, rsa4096, rsa8192, ec256, ec384 (default: "rsa2048") diff --git a/cli.go b/cli.go index ba51c1bc..272b9eb5 100644 --- a/cli.go +++ b/cli.go @@ -102,7 +102,7 @@ func main() { }, cli.StringFlag{ Name: "server, s", - Value: "https://acme-v01.api.letsencrypt.org/directory", + Value: "https://acme-v02.api.letsencrypt.org/directory", Usage: "CA hostname (and optionally :port). The server certificate must be trusted in order to avoid further modifications to the client.", }, cli.StringFlag{