diff options
-rw-r--r-- | letsencrypt-helpers/README | 2 | ||||
-rwxr-xr-x | letsencrypt-helpers/make-combined-crt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/letsencrypt-helpers/README b/letsencrypt-helpers/README index 6de832f..7274dc1 100644 --- a/letsencrypt-helpers/README +++ b/letsencrypt-helpers/README @@ -6,7 +6,7 @@ o Furthermore, that there is a ~/acme-challenge and that is aliased in apache: | Alias "/.well-known/acme-challenge" "/srv/letsencrypt/acme-challenge" o Also, we want an account key in ~: (umask 277 && ! [ -e account.key ] && openssl genrsa 4096 > account.key) -o And you want the letsencrypt chain file letsencryptauthorityx1.pem +o And you want the letsencrypt chain file lets-encrypt-x1-cross-signed.pem in ~/certs/extra o Optionally, a dh file in ~/certs/extra/dh-4096.pem openssl dhparam -out ~/certs/extra/dh-4096.pem 4096 diff --git a/letsencrypt-helpers/make-combined-crt b/letsencrypt-helpers/make-combined-crt index 0dc2a68..2c6dc59 100755 --- a/letsencrypt-helpers/make-combined-crt +++ b/letsencrypt-helpers/make-combined-crt @@ -41,7 +41,7 @@ fi if [ -e "$cn-letsencrypt.pem" ] ; then pem="$cn-letsencrypt.pem" - chain="extra/letsencryptauthorityx1.pem" + chain="extra/lets-encrypt-x1-cross-signed.pem" elif [ -e "$cn.pem" ] ; then pem="$cn.pem" if [ -e "$cn-chain.pem" ]; then |