fix: MQTT broke after internal domain change
Build and deploy / build (push) Successful in 14m8s
Build and deploy / Deploy container (push) Successful in 5m38s

This commit was merged in pull request #7.
This commit is contained in:
2026-06-19 03:46:26 +02:00
parent 9979ab3446
commit d353fa9759
+2 -2
View File
@@ -10,12 +10,12 @@ return {
openid_url = "https://login.huizinga.dev/api/oidc", openid_url = "https://login.huizinga.dev/api/oidc",
}, },
mqtt = { 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, port = 8883,
client_name = "automation-" .. host, client_name = "automation-" .. host,
username = "mqtt", username = "mqtt",
password = secrets.mqtt_password, password = secrets.mqtt_password,
tls = host == "zeus" or host == "hephaestus", tls = false,
}, },
modules = { modules = {
require("config.battery"), require("config.battery"),