mirror of
https://github.com/acme-dns/acme-dns.git
synced 2026-04-27 04:45:48 +03:00
[GH-ISSUE #129] Documentation and example config mismatch #50
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#50
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 @jamestutton on GitHub (Dec 10, 2018).
Original GitHub issue: https://github.com/acme-dns/acme-dns/issues/129
Hi just testing this and firstly great project.
One issue that caused me some issues though is the example docker config is mismatched with the example config.cfg Issue being
docker -p53:53 binds tcp port 53 for the container whilethe example config.cfg is listening to udp port 53.
So it either needs -p 53:53/udp preferred or the config.cfg updated to protocol = "tcp"
As it stands I suspect a number of people new to docker will fall at this hurdle and this great project will not get the support or consideration it deserves.
@jcormier commented on GitHub (Dec 12, 2018):
Yes this just tripped me up for a few days. Had to update the docker-compose to use port 53/udp
github.com/joohoi/acme-dns@20411b650f/docker-compose.yml (L10)@joohoi commented on GitHub (Dec 13, 2018):
Thanks for your kind words, and nice catch! This should now be fixed in #130 . I decided to add a requested (and sane) feature to bind DNS listener to both - UDP and TCP ports at the same time. This combination should make
acme-dnsmore convinient to use.