Let's Encrypt recently switched their default to ECDSA instead of RSA; Synology only accepts RSA, so adding --keylength 2048 to obtain RCA certificate

master
XDigital 2024-08-07 15:34:44 +07:00
parent 60c2dfd480
commit 0d7980099f
1 changed files with 1 additions and 1 deletions

@ -49,7 +49,7 @@ Now it's time to create the certificate for your domain:
cd /usr/local/share/acme.sh cd /usr/local/share/acme.sh
export CERT_DOMAIN="your-domain.tld" export CERT_DOMAIN="your-domain.tld"
export CERT_DNS="dns_cf" export CERT_DNS="dns_cf"
./acme.sh --issue --server letsencrypt --home . -d "$CERT_DOMAIN" --dns "$CERT_DNS" ./acme.sh --issue --server letsencrypt --home . -d "$CERT_DOMAIN" --dns "$CERT_DNS" --keylength 2048
``` ```
## Deploy the default certificate ## Deploy the default certificate