fixed ssl

This commit is contained in:
Bryan Ramos 2026-03-12 04:57:06 -04:00
parent 9d08efaa77
commit 52bea0cbeb

View file

@ -90,6 +90,10 @@ in
}; };
}; };
# NixOS frigate module creates nginx virtualHost automatically via hostname option # Add SSL to frigate's nginx virtualHost
services.nginx.virtualHosts."frigate.${domain}" = mkIf nginx.enable {
useACMEHost = domain;
forceSSL = true;
};
}; };
} }