tadpole: Change default email for certs

This commit is contained in:
Alexander Heldt
2024-09-08 18:51:35 +02:00
parent dc944a0969
commit 3092241f0b
2 changed files with 4 additions and 6 deletions

View File

@@ -1,16 +1,18 @@
{ ... }: { ... }:
{ {
security.acme = { security.acme = {
defaults = {
email = "acme@ppp.pm";
};
certs = { certs = {
"ppp.pm" = { "ppp.pm" = {
webroot = "/var/lib/acme/acme-challenge/"; webroot = "/var/lib/acme/acme-challenge/";
email = "p@ppp.pm";
group = "nginx"; group = "nginx";
}; };
"git.ppp.pm" = { "git.ppp.pm" = {
webroot = "/var/lib/acme/acme-challenge/"; webroot = "/var/lib/acme/acme-challenge/";
email = "p@ppp.pm";
group = "nginx"; group = "nginx";
}; };
}; };

View File

@@ -13,10 +13,6 @@ in
security = { security = {
acme = { acme = {
acceptTerms = true; acceptTerms = true;
defaults = {
email = "p@ppp.pm";
};
}; };
}; };