mirror of
https://github.com/acme-dns/acme-dns.git
synced 2026-04-27 04:45:48 +03:00
[GH-ISSUE #288] Question: acme-dns not listening for API #148
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#148
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 @jflamy on GitHub (Jan 25, 2022).
Original GitHub issue: https://github.com/acme-dns/acme-dns/issues/288
[if this is not the right forum to ask, kindly redirect me]
After starting acme-dns (version pulled from the github release, untarred), it only listens to port 53.
I am therefore unable to call the API with /register to complete the creation of the CNAME records.
API section is standard, just changed the port to 8443
There are no messages in the startup output pertaining to the API or to a misconfiguration. There seems to be a catch-22 if acme-dns is looking for a certificate for itself as indicated on the last line.
The public IP address for ns.auth.jflamy.dev is correct, and port 53 is open, but I just want to register at this point...
@jflamy commented on GitHub (Jan 25, 2022):
Changing tls to "none" and using a http port does not help either.
curl -L http://localhost:8080/registerreports "method not allowed"@joohoi commented on GitHub (Jan 25, 2022):
The later actually seems to indicate that the listener is up. "method not allowed" is because acme-dns only does POST requests and the default for curl is GET. "method not allowed" is an actual response from the acme-dns http listener.
I don't know why the listener failed to start in the original post though...