feat: deploy prowlarr in remote machine
but reverse proxy it from the local machine over tailscale
This commit is contained in:
25
nixos/tsuba/services/dnscrypt.nix
Normal file
25
nixos/tsuba/services/dnscrypt.nix
Normal file
@@ -0,0 +1,25 @@
|
||||
{config, ...}: {
|
||||
networking = {
|
||||
dhcpcd.extraConfig = "nohook resolv.conf";
|
||||
networkmanager.dns = "none";
|
||||
};
|
||||
services.resolved.enable = false;
|
||||
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/cache/dnscrypt-proxy/public-resolvers.md";
|
||||
minisign_key = "RWQf6LRCGA9i53mlYecO4IzT51TGPpvWucNSCh1CBM0QTaLn73Y7GFO3";
|
||||
};
|
||||
|
||||
# You can choose a specific set of servers from https://github.com/DNSCrypt/dnscrypt-resolvers/blob/master/v3/public-resolvers.md
|
||||
server_names = ["cloudflare-security"];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user