mirror of
https://github.com/acme-dns/acme-dns.git
synced 2026-04-27 12:55:48 +03:00
[GH-ISSUE #281] Solving ACME challenge without exposing subdomain names in DNS #142
Labels
No labels
Documentation
Documentation
bug
enhancement
feature request
feature request
help wanted
pull-request
question
security
security
testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/acme-dns#142
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @shalak on GitHub (Sep 20, 2021).
Original GitHub issue: https://github.com/acme-dns/acme-dns/issues/281
When I want to obtain LE certificate for foo.example.com, I need to add a
_acme-challange.foo.example.comCNAME to my DNS. But this exposes the information that I'm running a server namedfooin my infrastructure.Is there a way for me to obtain multiple LE certificates, each for different subdomain, but only add the
_acme-challange.example.com?When I tried to do this, the
acme-dns-client-driven certbot returns error:@Zetanova commented on GitHub (Oct 27, 2021):
Your problem has nothing to do with acme-dns.
You need to generate a wildcard cert
*.example.comand use it forfoo.example.comservice.@joohoi commented on GitHub (Jan 25, 2022):
There should not be any issues for having multiple wildcard certificates generated using acme-dns. Wildcard certificates are your only option for hiding the subdomain names though, as all names registered for certificates get published in Certificate Transparency logs.
@shalak commented on GitHub (Jan 26, 2022):
Thank you for the answers, I'll close the ticket.