Merge pull request #37733 from NixOS/acme-fix

acme module: update for simp_le v0.8

Changed files
+1 -9
nixos
modules
security
+1 -9
nixos/modules/security/acme.nix
···
'';
};
-
tosHash = mkOption {
-
type = types.string;
-
default = "cc88d8d9517f490191401e7b54e9ffd12a2b9082ec7a1d4cec6101f9f1647e7b";
-
description = ''
-
SHA256 of the Terms of Services document. This changes once in a while.
-
'';
-
};
-
production = mkOption {
type = types.bool;
default = true;
···
let
cpath = "${cfg.directory}/${cert}";
rights = if data.allowKeysForGroup then "750" else "700";
-
cmdline = [ "-v" "-d" data.domain "--default_root" data.webroot "--valid_min" cfg.validMin "--tos_sha256" cfg.tosHash ]
++ optionals (data.email != null) [ "--email" data.email ]
++ concatMap (p: [ "-f" p ]) data.plugins
++ concatLists (mapAttrsToList (name: root: [ "-d" (if root == null then name else "${name}:${root}")]) data.extraDomains)
···
'';
};
production = mkOption {
type = types.bool;
default = true;
···
let
cpath = "${cfg.directory}/${cert}";
rights = if data.allowKeysForGroup then "750" else "700";
+
cmdline = [ "-v" "-d" data.domain "--default_root" data.webroot "--valid_min" cfg.validMin ]
++ optionals (data.email != null) [ "--email" data.email ]
++ concatMap (p: [ "-f" p ]) data.plugins
++ concatLists (mapAttrsToList (name: root: [ "-d" (if root == null then name else "${name}:${root}")]) data.extraDomains)