From ad47cb6c6154faa16cbddfe4e756d8648f9ced82 Mon Sep 17 00:00:00 2001 From: wh1te909 Date: Sun, 18 Oct 2020 21:44:45 +0000 Subject: [PATCH] fix letsencrypt fullchain filename --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 209ecf49..18535680 100755 --- a/install.sh +++ b/install.sh @@ -157,7 +157,7 @@ if [[ $LETS_ENCRYPT == "y" ]]; then done CERT_PRIV_KEY=/etc/letsencrypt/live/${rootdomain}/privkey.pem - CERT_PUB_KEY=/etc/letsencrypt/live/${rootdomain}/fullchainkey.pem + CERT_PUB_KEY=/etc/letsencrypt/live/${rootdomain}/fullchain.pem else echo -ne "\n${GREEN}We will generate a self-signed certificate for you.${NC}\n"