From 953707988fa34ad4d9e2a720c5279a0560a6df35 Mon Sep 17 00:00:00 2001 From: Ivan Folgueira Bande Date: Fri, 9 Jan 2026 15:00:30 +0100 Subject: [PATCH] use original cert issuance procedure --- run_certbot.sh | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/run_certbot.sh b/run_certbot.sh index 1a632f0..9e12553 100644 --- a/run_certbot.sh +++ b/run_certbot.sh @@ -27,13 +27,14 @@ if [ ! -d "${LETSENCRYPT_PATH}" ]; then apk add --no-cache certbot fi - certbot certonly \ - --non-interactive \ - --agree-tos \ - --no-eff-email \ - --email "${EMAIL}" \ - --webroot -w "${WEBROOT}" \ - -d "${DOMAIN}" + certbot certonly\ + --non-interactive\ + --agree-tos\ + --no-eff-email\ + --no-redirect\ + --email admin@${DOMAIN}\ + -d ${DOMAIN}\ + --standalone echo "[INFO] Certificate issued successfully." else