fix(heimdallr): LAN-direct bindings + angie proxy headers #15
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "feat/heimdallr-lan-direct"
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?
Root cause of the connection struggle:
ha.litelot.usresolves to the public proxy IP (88.98.245.78) — not heimdallr — so the browser hits the internet proxy (502), never heimdallr's angie. The 'bans' in HA were the browser retrying/api/websocketthrough a proxy with no HA upstream.Changes (LAN-direct access while the public proxy is wired up later):
http.server_host: 127.0.0.1 → 0.0.0.0 → reachable at http://192.168.1.125:8123web.listenAddress: → 0.0.0.0 → reachable at :8082; REST stays loopback (HA-only)recommendedProxySettings = true: X-Forwarded-For/Proto/Host so HA sees real client IPs, not angie's loopbackDry-build passes.