You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
okorsky
changed the title
Is it possible to split the services on two servers? (one server for HTTPS and another for DNS)
NOT AN ISSUE! is it possible to split the services on two servers? (one server for HTTPS and another for DNS)
Sep 4, 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 #363 for related information.
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.
The text was updated successfully, but these errors were encountered: