Replies: 1 comment
|
Short answer: no — the UI is not reachable from other computers on your local network, and that is deliberate rather than a configuration gap. The HTTP server binds IPv4 loopback only. It is hardcoded at addr.sin_addr.s_addr = htonl(0x7F000001); /* 127.0.0.1 */and the invariant is stated in The reason it matters: there is no authentication layer in the server at all. Loopback is the access-control boundary — the UI exposes a queryable index of your source code, so anything that can reach the port can read it. If you need it from another machine today, SSH port forwarding works precisely because the bind is loopback: That terminates on the remote loopback interface and satisfies the origin check. A reverse proxy also works but needs Making the bind address configurable is an open request — see #1210, which asks for exactly this for VPS deployments. It is a genuine security-posture decision rather than a flag, so I have not pre-judged it there either; if this matters to you, that issue is the right place to add your use case. |
Uh oh!
There was an error while loading. Please reload this page.
UI can be reachable from others computers in the local network?
All reactions