Dear friends.
I have a use case where I have multiple domains/zones. Example:
- one.example.com
- two.example.com
- one.another.example.net
My Acme-dns-server config points to auth.example.com. Everything runs perfectly even for subdomains, since I changed the zones with the proper CNAMEs, and I create the A Record in my example.com to point to the auth.example.com node (where acme dns server service is running).
My question is... in a situation where I have multiple domains/zones (like the example above), do I need to create 1 Acme-dns-server per domain in order to create certificates for every single domain? This doesn't make any sense in my head...
Full example (this is working for 1 domain):
My ACME-DNS-Server Config:
listen = "22.2.2.22:53"
protocol = "both"
domain = "auth.example.com"
nsname = "auth.example.com"
nsadmin = "email@email.example.com"
records = [
# domain pointing to the public IP of your acme-dns server
"auth.example.com. A 111.1.1.111",
# specify that auth.example.org will resolve any *.auth.example.org records
"auth.example.com. NS auth.example.com.",
]
On my DNS Server I have this (and again, this is working perfecly for 1 domain and subdomains):
auth.example.com A IP_OF_MY_ACME_SERVER
_acme-challenge.one.example.com. CNAME 734895738538hjfjfgh.auth.example.com
_acme-challenge.two.example.com. CNAME 11111111111111sssss.auth.example.com
auth.example.com NS auth.example.com
Now... if I have a completely different domains/zones... lets say another.example.com what do I need to do, for this to work with multiple domains?
Please help... I'm in fully desperate mode
... (sorry for any typos).