From 3e676e232a7dab397ccc43037a6765b33cfd5efc Mon Sep 17 00:00:00 2001 From: Florent Daigniere Date: Mon, 23 Aug 2021 19:41:44 +0200 Subject: [PATCH] fix #1270 --- core/nginx/letsencrypt.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/nginx/letsencrypt.py b/core/nginx/letsencrypt.py index 1dd2cba4..e3db05f1 100755 --- a/core/nginx/letsencrypt.py +++ b/core/nginx/letsencrypt.py @@ -13,6 +13,7 @@ command = [ "--cert-name", "mailu", "--preferred-challenges", "http", "--http-01-port", "8008", "--keep-until-expiring", + "--renew-with-new-domains", "--config-dir", "/certs/letsencrypt", "--post-hook", "/config.py" ] @@ -26,6 +27,7 @@ command2 = [ "--preferred-challenges", "http", "--http-01-port", "8008", "--keep-until-expiring", "--key-type", "ecdsa", + "--renew-with-new-domains", "--config-dir", "/certs/letsencrypt", "--post-hook", "/config.py" ]