From d353fa9759f57a4f0a902d82bad88310d1786371 Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Fri, 19 Jun 2026 03:46:26 +0200 Subject: [PATCH] fix: MQTT broke after internal domain change --- config/config.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/config.lua b/config/config.lua index 289a573..1fe4eaa 100644 --- a/config/config.lua +++ b/config/config.lua @@ -10,12 +10,12 @@ return { openid_url = "https://login.huizinga.dev/api/oidc", }, mqtt = { - host = ((host == "zeus" or host == "hephaestus") and "olympus.lan.huizinga.dev") or "mosquitto", + host = ((host == "zeus" or host == "hephaestus") and "olympus.huizinga.lan") or "mosquitto", port = 8883, client_name = "automation-" .. host, username = "mqtt", password = secrets.mqtt_password, - tls = host == "zeus" or host == "hephaestus", + tls = false, }, modules = { require("config.battery"),