diff --git a/haos-addon/config.yaml b/haos-addon/config.yaml index b7df62b..97ac4cf 100644 --- a/haos-addon/config.yaml +++ b/haos-addon/config.yaml @@ -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 diff --git a/haos-addon/src/main.py b/haos-addon/src/main.py index 12f39e6..b9637e1 100644 --- a/haos-addon/src/main.py +++ b/haos-addon/src/main.py @@ -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)