mirror of
https://github.com/acme-dns/acme-dns.git
synced 2026-04-27 04:45:48 +03:00
[GH-ISSUE #331] acme-dns only saves a single TXT record, not 2 #183
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#183
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 @Exagone313 on GitHub (Feb 12, 2023).
Original GitHub issue: https://github.com/acme-dns/acme-dns/issues/331
Hello,
I have acme-dns v1.0 self-hosted and I'm trying to use it along with dehydrated to create a wildcard certificate (with both
foo.exampleand*.foo.examplein alt names in the same certificate).This requires being able to return two different TXT records for solving both challenges at the same time.
However, each time I call the
/updateendpoint, the TXT record is updated and acme-dns will only send a single TXT record for my domain. This means that when the challenges are checked, the first challenge will be invalid (since only the second one is returned).Unfortunately, dehydrated doesn't support handling one challenge at once (see the issue here), unlike cert-manager on Kubernetes (by specifying
--max-concurrent-challenges=1). dehydrated requires all challenges to be valid at once, before it asks the server to check the challenges.This seems like a regression from #28.
Do you have the same issue?