From 9d08efaa771e557352705c638738647a9468c2dd Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Thu, 12 Mar 2026 04:45:57 -0400 Subject: [PATCH] fixed loop --- src/system/modules/frigate/default.nix | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/system/modules/frigate/default.nix b/src/system/modules/frigate/default.nix index 808ee5f..05c5df2 100644 --- a/src/system/modules/frigate/default.nix +++ b/src/system/modules/frigate/default.nix @@ -90,13 +90,6 @@ in }; }; - services.nginx.virtualHosts."frigate.${domain}" = mkIf nginx.enable { - useACMEHost = domain; - forceSSL = true; - locations."/" = { - proxyPass = "http://127.0.0.1:5000"; - proxyWebsockets = true; - }; - }; + # NixOS frigate module creates nginx virtualHost automatically via hostname option }; }