dnscrypt-proxy2
This commit is contained in:
@@ -5,12 +5,47 @@
|
|||||||
networking = {
|
networking = {
|
||||||
enableIPv6 = true;
|
enableIPv6 = true;
|
||||||
firewall.enable = true;
|
firewall.enable = true;
|
||||||
networkmanager.enable = true;
|
dhcpcd.extraConfig = "nohook resolv.conf";
|
||||||
|
networkmanager = {
|
||||||
|
enable = true;
|
||||||
|
dns = "none";
|
||||||
|
};
|
||||||
hosts = {
|
hosts = {
|
||||||
"192.168.1.64" = [ "workstation" ];
|
"192.168.1.64" = [ "workstation" ];
|
||||||
"192.168.1.69" = [ "server" ];
|
"192.168.1.69" = [ "server" ];
|
||||||
"192.168.1.100" = [ "miniserver" ];
|
"192.168.1.100" = [ "miniserver" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
services.dnscrypt-proxy2 = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
ipv6_servers = true;
|
||||||
|
require_dnssec = true;
|
||||||
|
sources.public-resolvers = {
|
||||||
|
urls = [
|
||||||
|
"https://raw.githubusercontent.com/DNSCrypt/dnscrypt-resolvers/master/v3/public-resolvers.md"
|
||||||
|
"https://download.dnscrypt.info/resolvers-list/v3/public-resolvers.md"
|
||||||
|
];
|
||||||
|
cache_file = "/var/lib/dnscrypt-proxy2/public-resolvers.md";
|
||||||
|
minisign_key = "RWQf6LRCGA9i53mlYecO4IzT51TGPpvWucNSCh1CBM0QTaLn73Y7GFO3";
|
||||||
|
};
|
||||||
|
server_names = [
|
||||||
|
"cloudflare"
|
||||||
|
"cloudflare-ipv6"
|
||||||
|
"cloudflare-security"
|
||||||
|
"cloudflare-security-ipv6"
|
||||||
|
"adguard-dns-doh"
|
||||||
|
"mullvad-adblock-doh"
|
||||||
|
"mullvad-doh"
|
||||||
|
"nextdns"
|
||||||
|
"nextdns-ipv6"
|
||||||
|
"quad9-dnscrypt-ipv4-filter-pri"
|
||||||
|
"ibksturm"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
systemd.services.dnscrypt-proxy2.serviceConfig = {
|
||||||
|
StateDirectory = "dnscrypt-proxy";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user