From 3adf163455b41d23871ab6ee8de520adbd0321d9 Mon Sep 17 00:00:00 2001 From: DrDrrae Date: Thu, 10 Aug 2017 21:39:43 -0400 Subject: [PATCH] Change names of PEM files Changed lighttpd.ca.pem to lettsencrypt.ca.pem. Changed lighttpd.combined.pem to the domain.pem. --- deploy/lighttpd.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/lighttpd.sh b/deploy/lighttpd.sh index 2eca932a..ba4bbea3 100644 --- a/deploy/lighttpd.sh +++ b/deploy/lighttpd.sh @@ -29,12 +29,12 @@ lighttpd_deploy() { fi _info "Copying combined key and cert and CA chain" - _real_ca="$_ssl_path/lighttpd.ca.pem" + _real_ca="$_ssl_path/letsencrypt.ca.pem" if ! cat "$_cca" >"$_real_ca"; then _err "Error: write ca file to: $_real_ca" return 1 fi - _real_combinedkeyandcert="$_ssl_path/lighttpd.combined.pem" + _real_combinedkeyandcert="$_ssl_path/$_cdomain.pem" if ! cat "$_ckey" "$_ccert" >"$_real_combinedkeyandcert"; then _err "Error: write key file to: $_real_combinedkeyandcert" return 1