-
-
Notifications
You must be signed in to change notification settings - Fork 5k
DNS alias mode
If your dns provider doesn't support api access, or if you mind the secure to give the dns api access of your main domain to a shell script. You can use dns alias mode.
For example, your main domain is importantDomain.com
, which doesn't have api access, or you don't want to give the api access to acme.sh, since it's important.
And you have another domain: "aliasDomainForValidationOnly.com", which has a supported dns api. This domain is less important, and maybe it's used for validation only.
Ok, let's start.
_acme-challenge.importantDomain.com
=> _acme-challenge.aliasDomainForValidationOnly.com
acme.sh --issue \
-d importantDomain.com --challenge-alias aliasDomainForValidationOnly.com --dns dns_cf
The Letsencrypt CA server checks the txt record of original domain _acme-challenge.importantDomain.com
to validate your domain, but you have set the CNAME in step 1, so it goes forward to the aliased domain _acme-challenge.aliasDomainForValidationOnly.com
to check.
And acme.sh knows that, so it just added the correct txt record to _acme-challenge.aliasDomainForValidationOnly.com
.
So, it's done. you will get a cert for importantDomain.com
, but you don't need to give the domain control out.
If you have multiple (sub)domains, you need add CNAME for each (sub)domain, but they can share the same aliased domain. For example, you can add the CNAME like:
_acme-challenge.importantDomain.com
=> _acme-challenge.aliasDomainForValidationOnly.com
_acme-challenge.www.importantDomain.com
=> _acme-challenge.aliasDomainForValidationOnly.com
_acme-challenge.sub.importantDomain.com
=> _acme-challenge.aliasDomainForValidationOnly.com
_acme-challenge.importantDomain2.com
=> _acme-challenge.aliasDomainForValidationOnly.com
_acme-challenge.importantDomain3.com
=> _acme-challenge.aliasDomainForValidationOnly.com
And then issue cert like bellow:
acme.sh --issue \
-d importantDomain.com --challenge-alias aliasDomainForValidationOnly.com --dns dns_cf
-d www.importantDomain.com \
-d sub.importantDomain.com \
-d importantDomain2.com \
-d importantDomain3.com
Even with ACME v2 wildcard cert:
acme.sh --issue \
-d importantDomain.com --challenge-alias aliasDomainForValidationOnly.com --dns dns_cf
-d www.importantDomain.com \
-d sub.importantDomain.com \
-d importantDomain2.com \
-d importantDomain3.com \
-d *.importantDomain.com \
-d *.importantDomain2.com \
-d *.importantDomain3.com
Yes, you know, acme.sh support to set alias domain for each domain. Even with different dns provider:
You can set CNAME like:
_acme-challenge.importantDomain.com
=> _acme-challenge.aliasDomainForValidationOnly.com
_acme-challenge.importantDomain2.com
=> _acme-challenge.aliasDomainForValidationOnly2.com
Then issue cert:
acme.sh --issue \
-d importantDomain.com --challenge-alias aliasDomainForValidationOnly.com --dns dns_cf
-d importantDomain2.com --challenge-alias aliasDomainForValidationOnly2.com
Even with different dns provider:
acme.sh --issue \
-d importantDomain.com --challenge-alias aliasDomainForValidationOnly.com --dns dns_cf
-d importantDomain2.com --challenge-alias aliasDomainForValidationOnly2.com --dns dns_gd
Let's assume the first domain aliasDomainForValidationOnly.com
is hosted at cloudflare, and the second is hosted at godaddy.
Do not remove the CNAME like : _acme-challenge.importantDomain.com
after you issue the cert. It will be reused when acme.sh tries o renew the cert. The left cname record _acme-challenge.importantDomain.com
doesn't harm to your domain at all. Just keep it there.
We have another parameter: --domain-alias
, it has the same meaning with --challenge-alias
.
But with --domain-alias
you don't need to add _acme-challenge.
prefix.
For example, if you use --challenge-alias
, you must set CNAME like bellow:
CNAME:
_acme-challenge.A.com
=> _acme-challenge.B.com
Then issue cert like:
acme.sh --issue -d a.com --challenge-alias b.com --dns dns_cf
If you use --domain-alias
, the CNAME should be like:
CNAME:
_acme-challenge.A.com
=> myalias.B.com
Then issue cert like:
acme.sh --issue -d a.com --domain-alias myalias.B.com --dns dns_cf
Note: Don't use the domain name only for --domain-alias.
acme.sh --issue -d a.com --domain-alias B.com --dns dns_cf
This would require that a TXT record is created at the domain apex i.e. @ TXT "myvalidationcode". Since adding a value at the apex of a domain requires a different syntax for adding the DNS records it cannot be used in this form.
If you really want to create the validation records at the domain apex then depending on the implementation of the dns api you have to use
acme.sh --issue -d a.com --domain-alias @.B.com --dns dns_cf
or
acme.sh --issue -d a.com --domain-alias .B.com --dns dns_cf
Buy me a beer, Donate to acme.sh if it saves your time. Your donation makes acme.sh better: https://donate.acme.sh/
如果 acme.sh 帮你节省了时间,请考虑赏我一杯啤酒🍺, 捐助: https://donate.acme.sh/ 你的支持将会使得 acme.sh 越来越好. 感谢