mirror of
https://github.com/acme-dns/acme-dns.git
synced 2026-04-27 04:45:48 +03:00
[GH-ISSUE #361] NOT AN ISSUE! is it possible to split the services on two servers? (one server for HTTPS and another for DNS) #204
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#204
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 @okorsky on GitHub (Sep 4, 2024).
Original GitHub issue: https://github.com/acme-dns/acme-dns/issues/361
This is not an issue, it's more like a feature question.
is it possible to split the DNS and HTTPS services on two servers? where both will point to the same DB?
Is there a recommended configuration for that setup?
I'm thinking that if I setup 2 servers pointing to the same PostgreSQL database then it should work. But not sure if that's the case.
@maddes-b commented on GitHub (Sep 21, 2024):
Having API and DNS on two different machines is not intended, you may try with sharing the DB file from the API machine (does DB updates: /register and /update) to the DNS machine (read only).
Otherwise if the API and DNS are on the same machine, you can serve the API under a different domain by binding API to a local IP (127.0.0.1, ::1, or similar) and use a reverse proxy (e.g. nginx) to accept requests and forward to the API's IP and port.
See https://github.com/joohoi/acme-dns/pull/363 for related information.