From 18bd3c6406e16f1661a2211d4ee17972a666bc0c Mon Sep 17 00:00:00 2001 From: cutemeli Date: Mon, 9 Feb 2026 12:32:46 +0100 Subject: [PATCH] ACME Certs Doku --- ACME Certs | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/ACME Certs b/ACME Certs index e69de29..44be130 100644 --- a/ACME Certs +++ b/ACME Certs @@ -0,0 +1,26 @@ +How to install LetsEncrypt Certs ======================================= + +First Issue: + +sudo /root/.acme.sh/acme.sh --issue -d xxx.cutemeli.com --dns \ +--yes-I-know-dns-manual-mode-enough-go-ahead-please + +-> set txt-records and then use --renew: + +sudo /root/.acme.sh/acme.sh --renew -d xxx.cutemeli.com --dns \ +--yes-I-know-dns-manual-mode-enough-go-ahead-please + +then do: + +sudo /root/.acme.sh/acme.sh --install-cert -d xxx.cutemeli.com \ +--fullchain-file /etc/ssl/certs/xxx.pem \ +--key-file /etc/ssl/private/xxx.key \ +--reloadcmd "systemctl reload nginx" + + +How to renew Certs =================================================== + +sudo /root/.acme.sh/acme.sh --renew -d xxx.cutemeli.com --dns \ +--yes-I-know-dns-manual-mode-enough-go-ahead-please + +-> set txt-records and then use --renew \ No newline at end of file