Fix adguardhome settings

Set http port and dns settings using updated schema, disable rate
limiting and enable safe search
This commit is contained in:
Evie Litherland-Smith 2023-10-22 06:45:46 +01:00
parent a0e61b85b6
commit 64109cf380

View file

@ -6,8 +6,13 @@
enable = true; enable = true;
mutableSettings = false; mutableSettings = false;
settings = { settings = {
bind_port = 3001; http.address = "0.0.0.0:3001";
# schema_version = 14; dns = {
bind_hosts = [ "127.0.0.1" "192.168.1.230" ];
bootstrap_dns = [ "9.9.9.9" "149.112.112.10" ];
ratelimit = 0;
safe_search.enabled = true;
};
}; };
openFirewall = true; openFirewall = true;
}; };