trying to get SSL on my synology web server #6120
Unanswered
mackconsult
asked this question in
Q&A
Replies: 1 comment
-
$CERT_DOMAIN should be in the format host.domain.tld in your case www.marine-captian.com or you can make it a wildcard like *.marine-captian.com to catch any host name you want to toss at the server. if you want specific names you can specify alternates ./acme.sh --issue --server letsencrypt --home . -d www.marine-captian.com -d myhost.marine-captian.com --dns dns_cf --keylength 2048 If you want your host accessible with SSL at marine-captian.com use a wildcard. ./acme.sh --issue --server letsencrypt --home . -d *.marine-captian.com --dns dns_cf --keylength 2048 you don't have to define those as environmental variables to run acme.sh |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I followed the directions on this but for some reason it errors out:
https://github.com/acmesh-official/acme.sh/wiki/Synology-NAS-Guide
When I do the last line on creating the certificate:
./acme.sh --issue --server letsencrypt --home . -d "$CERT_DOMAIN" --dns "$CERT_DNS" --keylength 2048
I get the following error:

Beta Was this translation helpful? Give feedback.
All reactions