nuc: disable dnssec as it breaks matrix

This commit is contained in:
Rouven Seifert 2024-01-25 18:19:48 +01:00
parent f0cae501f9
commit 7a8e304ca1
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
3 changed files with 14 additions and 10 deletions

View file

@ -27,6 +27,9 @@ in
enable = true; enable = true;
configureRedisLocally = true; configureRedisLocally = true;
extraConfigFiles = [ config.age.secrets."matrix/shared".path ]; extraConfigFiles = [ config.age.secrets."matrix/shared".path ];
log = {
root.level = "WARNING";
};
settings = { settings = {
server_name = config.networking.domain; server_name = config.networking.domain;

View file

@ -14,7 +14,8 @@
}; };
services.resolved = { services.resolved = {
enable = true; enable = true;
dnssec = "true"; # dnssec is broken
# dnssec = "true";
fallbackDns = [ fallbackDns = [
"9.9.9.9" "9.9.9.9"
"149.112.112.112" "149.112.112.112"

View file

@ -10,7 +10,7 @@ in
enable = true; enable = true;
enabledCollectors = [ "systemd" ]; enabledCollectors = [ "systemd" ];
}; };
postgres.enable = true; # postgres.enable = true;
}; };
scrapeConfigs = [ scrapeConfigs = [
{ {
@ -21,14 +21,14 @@ in
} }
]; ];
} }
{ # {
job_name = "postgres"; # job_name = "postgres";
static_configs = [ # static_configs = [
{ # {
targets = [ "127.0.0.1:${toString exportersConfig.postgres.port}" ]; # targets = [ "127.0.0.1:${toString exportersConfig.postgres.port}" ];
} # }
]; # ];
} # }
]; ];
}; };