From 04a8fb3125659ef1eb827a7632a48e833dff73ff Mon Sep 17 00:00:00 2001 From: retr0 <42kdesigners@gmail.com> Date: Tue, 26 May 2026 15:23:01 +0200 Subject: [PATCH] =?UTF-8?q?ShineBridge=20v1.8.29=20=E2=80=94=20Port=208099?= =?UTF-8?q?=20nur=20auf=20localhost=20binden?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flask bindet auf 127.0.0.1 statt 0.0.0.0. Mit host_network: true war Port 8099 direkt vom LAN erreichbar. HAOS-Ingress verbindet sich über localhost, daher kein Funktionsverlust. Co-Authored-By: Claude Sonnet 4.6 --- haos-addon/config.yaml | 2 +- haos-addon/src/main.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/haos-addon/config.yaml b/haos-addon/config.yaml index 1e68634..afa75d3 100644 --- a/haos-addon/config.yaml +++ b/haos-addon/config.yaml @@ -1,5 +1,5 @@ name: ShineBridge -version: "1.8.28" +version: "1.8.29" slug: shinebridge description: Growatt Wechselrichter lokal in Home Assistant — Modbus TCP via ShineLAN-X, MQTT Discovery, Web UI url: https://gitea.bitfire.work/retr0/shinebridge diff --git a/haos-addon/src/main.py b/haos-addon/src/main.py index 6d8581f..e278509 100644 --- a/haos-addon/src/main.py +++ b/haos-addon/src/main.py @@ -1000,4 +1000,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="0.0.0.0", port=port, threaded=True) + app.run(host="127.0.0.1", port=port, threaded=True)