Upstream | Support multiple fallback resolvers

7ada3fcfb8 (diff-f6f04170f3c6b8b556a88fa842de545c)
This commit is contained in:
quindecim 2020-01-16 10:11:53 -05:00
parent 22adecdc68
commit dd0139b3f1
1 changed files with 10 additions and 8 deletions

View File

@ -181,21 +181,23 @@ dnscrypt_ephemeral_keys = true
# tls_cipher_suite = [52392, 49199] # tls_cipher_suite = [52392, 49199]
## Fallback resolver ## Fallback resolvers
## This is a normal, non-encrypted DNS resolver, that will be only used ## These are normal, non-encrypted DNS resolvers, that will be only used
## for one-shot queries when retrieving the initial resolvers list, and ## for one-shot queries when retrieving the initial resolvers list, and
## only if the system DNS configuration doesn't work. ## only if the system DNS configuration doesn't work.
## No user application queries will ever be leaked through this resolver, ## No user application queries will ever be leaked through these resolvers,
## and it will not be used after IP addresses of resolvers URLs have been found. ## and they will not be used after IP addresses of resolvers URLs have been found.
## It will never be used if lists have already been cached, and if stamps ## They will never be used if lists have already been cached, and if stamps
## don't include host names without IP addresses. ## don't include host names without IP addresses.
## It will not be used if the configured system DNS works. ## They will not be used if the configured system DNS works.
## A resolver supporting DNSSEC is recommended. ## Resolver supporting DNSSEC are recommended.
## ##
## People in China may need to use 114.114.114.114:53 here. ## People in China may need to use 114.114.114.114:53 here.
## Other popular options include 8.8.8.8 and 1.1.1.1. ## Other popular options include 8.8.8.8 and 1.1.1.1.
##
## If more than one resolver are specified, they will be tried in sequence.
fallback_resolver = '91.239.100.100:53' fallback_resolvers = ['91.239.100.100:53']
## Always use the fallback resolver before the system DNS settings. ## Always use the fallback resolver before the system DNS settings.