Fix wrong configuration section for skip_incompatible

This commit is contained in:
Natsu Kagami 2022-05-03 09:40:24 -04:00
parent a87eff9af7
commit 9bb3cc915c
Signed by: nki
GPG key ID: 7306B3D3C3AD6E51

View file

@ -26,7 +26,6 @@ in
ipv6_servers = cfg.ipv6; ipv6_servers = cfg.ipv6;
require_dnssec = true; require_dnssec = true;
require_nofilter = true; require_nofilter = true;
skip_incompatible = true;
# Sources # Sources
sources.public_resolvers = { sources.public_resolvers = {
@ -42,6 +41,7 @@ in
anonymized_dns.routes = [ anonymized_dns.routes = [
{ server_name = "*"; via = [ "anon-plan9-dns" "anon-v.dnscrypt.up-ipv4" ]; } { server_name = "*"; via = [ "anon-plan9-dns" "anon-v.dnscrypt.up-ipv4" ]; }
]; ];
anonymized_dns.skip_incompatible = true;
}; };
}; };
}; };