mirror of
https://github.com/acme-dns/acme-dns.git
synced 2026-04-27 12:55:48 +03:00
[GH-ISSUE #390] Certificate issue #221
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#221
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 @hjrhnd on GitHub (Aug 6, 2025).
Original GitHub issue: https://github.com/acme-dns/acme-dns/issues/390
Hello Dear joohoi
Thanks for your great project.. Last week I setup this project on docker. and all run correctly and certificate produced.
But now does not work.
$ dig -t txt @auth.example.org d420c923-bbd7-4056-ab64-c3ca54c9b3cf.auth.example.org works correctly
$ dig _acme-challenge.mydomain.com CNAME works correctly
but
$dig _acme-challenge.mydomain.com TXT return a TXT from primiry DNS not from Acme DNS
Could you please help me?
Best Regards
@filimonic commented on GitHub (Jan 12, 2026):
This is totally correct, and you have misconfiguration in your DNS data.
You SHOULD NOT have both
CNAMEandTXT(or any other) records on same server for the same FQDN.If you have
CNAME, no other records SHOULD exist with same FQDN.For example, Windows Server DNS forbids creating new records of any type if record with requested name already exists as
CNAMEBUT if you, despite the prohibition of such a configuration, have both
CNAMEand any other record with the same name on same DNS server for some reason, then server SHOULD serve the non-CNAME record first, and if it is not found, it should serve data using CNAME. And exactly this is happening in your case.