X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=nixops%2Fmodules%2Fwebsites%2Ftools%2Fgit%2Fdefault.nix;h=495c5eace0c7c6da9db8a8f4dc0d7a2b0be6fe98;hb=f40f5b235b890f46770a22f005f8a0f664cf0562;hp=ea0d9717ae152f2df53d288a048d74da56888a11;hpb=daf64e3f7de98e4267823d14fa34891b27b5f657;p=perso%2FImmae%2FConfig%2FNix.git diff --git a/nixops/modules/websites/tools/git/default.nix b/nixops/modules/websites/tools/git/default.nix index ea0d971..495c5ea 100644 --- a/nixops/modules/websites/tools/git/default.nix +++ b/nixops/modules/websites/tools/git/default.nix @@ -13,8 +13,6 @@ in { }; config = lib.mkIf cfg.enable { - security.acme.certs."eldiron".extraDomains."git.immae.eu" = null; - secrets.keys = mantisbt.keys; services.websites.tools.modules = gitweb.apache.modules ++ @@ -27,6 +25,7 @@ in { services.websites.tools.vhostConfs.git = { certName = "eldiron"; + addToCerts = true; hosts = ["git.immae.eu" ]; root = gitweb.apache.root; extraConfig = [ @@ -39,7 +38,7 @@ in { '' ]; }; - services.myPhpfpm.poolConfigs = { + services.phpfpm.poolConfigs = { mantisbt = mantisbt.phpFpm.pool; }; };