dnsPropagationCheck = false explicitly for certs.${domain}

pull/55/head
Alexander 2023-12-21 12:15:28 +04:00
parent 5760a753af
commit 0e62c9292b
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,6 @@ in
email = "${cfg.username}@${cfg.domain}";
server = if cfg.dns.useStagingACME then "https://acme-staging-v02.api.letsencrypt.org/directory" else "https://acme-v02.api.letsencrypt.org/directory";
reloadServices = [ "nginx" ];
dnsPropagationCheck = false;
};
certs = {
"${cfg.domain}" = {
@ -31,6 +30,7 @@ in
group = "acmereceivers";
dnsProvider = lib.strings.toLower cfg.dns.provider;
credentialsFile = acme-env-filepath;
dnsPropagationCheck = false;
};
};
};