feat(rpi4): update cfdyndns & acme setup

This commit is contained in:
Felix Schröter 2021-02-14 23:49:43 +01:00
parent cc6fcf1a37
commit 533df0fc45
No known key found for this signature in database
GPG key ID: 910ACB9F6BD26F58

View file

@ -29,14 +29,18 @@ with builtins; {
security.acme = {
acceptTerms = true;
email = "felschr@pm.me";
email = "dev@felschr.com";
};
services.cfdyndns = {
enable = true;
email = "felschr@pm.me";
apikeyFile = "/etc/nixos/secrets/cfdyndns-apikey";
records = [ "home.felschr.com" ];
records = [
"*.home.felschr.com"
"home.felschr.com"
"owntracks.felschr.com"
];
};
services.nginx = {