[change] config: fix default upstreams list

This commit is contained in:
Aleksey Dmitrevskiy 2019-03-07 12:04:22 +03:00
parent 982f8dc1e1
commit c8c663f3f0
2 changed files with 2 additions and 2 deletions

View File

@ -249,5 +249,5 @@
"update_announcement": "AdGuard Home {{version}} is now available! <0>Click here</0> for more info.",
"upstream_parallel": "Use parallel queries to speed up resolving by simultaneously querying all upstream servers",
"bootstrap_dns": "Bootstrap DNS servers",
"bootstrap_dns_desc": "Bootstrap DNS servers are used to resolve IP address of the DOH/DOT resolvers you specify as upstreams."
"bootstrap_dns_desc": "Bootstrap DNS servers are used to resolve IP addresses of the DOH/DOT resolvers you specify as upstreams."
}

View File

@ -60,7 +60,7 @@ type dnsConfig struct {
UpstreamDNS []string `yaml:"upstream_dns"`
}
var defaultDNS = []string{"https://dns.adguard.com/dns-query", "https://dns.cloudflare.com/dns-query"}
var defaultDNS = []string{"https://dns.cloudflare.com/dns-query"}
var defaultBootstrap = []string{"1.1.1.1"}
type tlsConfigSettings struct {