frigate updates for mqtt and openhab

This commit is contained in:
TheWanderingCrow 2025-09-16 11:18:37 -04:00
parent 07154f5125
commit f472b26c65
2 changed files with 5 additions and 3 deletions

View file

@ -11,8 +11,9 @@ in
auth.reset_admin_password = true; # roll the admin password every restart, depend on user accounts for long-lived access
tls.enabled = false; # off because we're doing ssl through the proxy
mqtt = {
# TODO: add mqtt broker
enabled = false;
enabled = true;
host = "host.containers.internal";
port = 1883;
};
notifications = {
enabled = true;
@ -56,7 +57,6 @@ in
track = [
"person"
"cat"
"car"
"dog"
];
};

View file

@ -9,4 +9,6 @@
}
];
};
networking.firewall.allowedTCPPorts = [1883];
}