From 4266972d4a558f858944d916b693cd917d22cefd Mon Sep 17 00:00:00 2001 From: Nguyen Van Dai Date: Thu, 2 Nov 2023 11:21:27 +0700 Subject: [PATCH] fix(acme): Updates the OpenLiteSpeed docker.conf for new ACME ECC key default (#128) - Fixes the SSL certificate file path, ACME uses ECC as default key. --- template/docker.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/template/docker.conf b/template/docker.conf index 21572ae..9af6f83 100644 --- a/template/docker.conf +++ b/template/docker.conf @@ -51,8 +51,8 @@ RewriteFile .htaccess } vhssl { - keyFile /root/.acme.sh/certs/$VH_NAME/$VH_NAME.key - certFile /root/.acme.sh/certs/$VH_NAME/fullchain.cer + keyFile /root/.acme.sh/certs/$VH_NAME_ecc/$VH_NAME.key + certFile /root/.acme.sh/certs/$VH_NAME_ecc/fullchain.cer certChain 1 } }