nixos/acme: fix staging endpoint url

fixes #72067
This commit is contained in:
Franz Pletz 2019-10-28 10:11:41 +01:00
parent 5d20246ac2
commit 5d22f7afe1
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -198,7 +198,7 @@ in
++ 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)
++ optionals (!cfg.production) ["--server" "https://acme-staging.api.letsencrypt.org/directory"];
++ optionals (!cfg.production) ["--server" "https://acme-staging-v02.api.letsencrypt.org/directory"];
acmeService = {
description = "Renew ACME Certificate for ${cert}";
after = [ "network.target" "network-online.target" ];