From bc2810eb8ac7cfabeab00a1ee380a3bd5b95531c Mon Sep 17 00:00:00 2001 From: boban Date: Fri, 24 Apr 2026 16:29:57 +0200 Subject: [PATCH] Fix: certbot in sudoers + SSL-Seite zeigt Zertifikate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit www-data braucht sudo-Recht auf certbot für SSL-Seite (certificates/renew) Co-Authored-By: Claude Sonnet 4.6 --- installer.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/installer.sh b/installer.sh index 1da571f..d40def8 100644 --- a/installer.sh +++ b/installer.sh @@ -803,6 +803,7 @@ install -m 755 "${APP_DIR}/update.sh" /usr/local/sbin/mailwolt-update cat > /etc/sudoers.d/mailwolt-certbot <<'SUDOERS' www-data ALL=(root) NOPASSWD: /usr/local/sbin/mailwolt-apply-domains www-data ALL=(root) NOPASSWD: /usr/local/sbin/mailwolt-update +www-data ALL=(root) NOPASSWD: /usr/bin/certbot SUDOERS chmod 440 /etc/sudoers.d/mailwolt-certbot