Fix: Flask zurück auf 0.0.0.0 — HA Ingress braucht es (v1.1.4)

127.0.0.1-Binding verursacht 502 Bad Gateway weil HA Supervisor Ingress
nicht von localhost aus verbindet. host_network: true + 0.0.0.0 ist die
korrekte Konfiguration für HAOS Add-ons.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
retr0
2026-04-26 16:37:48 +02:00
parent 2197e981b2
commit fd5625b99a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: ShineBridge
version: "1.1.3"
version: "1.1.4"
slug: shinebridge
description: Growatt Wechselrichter lokal in Home Assistant — Modbus TCP via ShineLAN-X, MQTT Discovery, Web UI
url: https://gitea.bitfire.work/retr0/Growatt-Wechselrichter-HAOS
+1 -1
View File
@@ -303,4 +303,4 @@ if __name__ == "__main__":
_restart_all()
port = int(os.environ.get("INGRESS_PORT", "8099"))
log.info("Web UI startet auf Port %d", port)
app.run(host="127.0.0.1", port=port, threaded=True)
app.run(host="0.0.0.0", port=port, threaded=True)