mirror of
https://github.com/acme-dns/acme-dns.git
synced 2026-04-27 04:45:48 +03:00
[GH-ISSUE #57] How do I make the subdomain.auth.domain.tld available from the outside #20
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#20
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 @jazzdd86 on GitHub (Mar 17, 2018).
Original GitHub issue: https://github.com/acme-dns/acme-dns/issues/57
Hi I created a docker container for acme-dns, I registered there and I can update the token via post request. I am using the jwilder nginx proxy.
I installed a CNAME entry for _acme-challenge.jotunheim.de to subdomain.auth.jotunheim.de
This entry points to my IP adress.
What I don't understand is, what I need to do now, to make the TXT entry available from the outside. Do I need to portforward port 53 to the inside acme-dns, right? What else?
@joohoi commented on GitHub (Mar 18, 2018):
Yeah, you will need to expose the DNS port on the host. In addition to that you will need the following . I'm making the assumption that you are running acme-dns in
auth.jotunheim.deand that the public IP address of the acme-dns instance is10.10.10.10(obiviously false):Main DNS zone for
jotunheim.de:auth.jotunheim.defrom the acme-dns instance. For example:auth.jotunheim.de. NS ns.auth.jotunheim.dens.auth.jotunheim.de A 10.10.10.10, where the IP is naturally the address of your acme-dns instance.Acme-dns static records configuration in
config.cfg:@jvanasco commented on GitHub (Mar 19, 2018):
It would make sense to extend the instructions to add the following:
@joohoi commented on GitHub (Mar 19, 2018):
This is in the works! In PR #64