dnscrypt-proxy.toml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572
  1. ##############################################
  2. # #
  3. # dnscrypt-proxy configuration #
  4. # #
  5. ##############################################
  6. ## This is an example configuration file.
  7. ## You should adjust it to your needs, and save it as "dnscrypt-proxy.toml"
  8. ##
  9. ## Online documentation is available here: https://dnscrypt.info/doc
  10. ##################################
  11. # Global settings #
  12. ##################################
  13. ## List of servers to use
  14. ##
  15. ## Servers from the "public-resolvers" source (see down below) can
  16. ## be viewed here: https://dnscrypt.info/public-servers
  17. ##
  18. ## If this line is commented, all registered servers matching the require_* filters
  19. ## will be used.
  20. ##
  21. ## The proxy will automatically pick the fastest, working servers from the list.
  22. ## Remove the leading # first to enable this; lines starting with # are ignored.
  23. server_names = ['cloudflare']
  24. ## List of local addresses and ports to listen to. Can be IPv4 and/or IPv6.
  25. listen_addresses = ['0.0.0.0:53']
  26. ## Maximum number of simultaneous client connections to accept
  27. max_clients = 250
  28. ## Switch to a different system user after listening sockets have been created.
  29. ## Note (1): this feature is currently unsupported on Windows.
  30. ## Note (2): this feature is not compatible with systemd socket activation.
  31. ## Note (3): when using -pidfile, the PID file directory must be writable by the new user
  32. # user_name = 'proxy'
  33. ## Require servers (from static + remote sources) to satisfy specific properties
  34. # Use servers reachable over IPv4
  35. ipv4_servers = true
  36. # Use servers reachable over IPv6 -- Do not enable if you don't have IPv6 connectivity
  37. ipv6_servers = false
  38. # Use servers implementing the DNSCrypt protocol
  39. dnscrypt_servers = false
  40. # Use servers implementing the DNS-over-HTTPS protocol
  41. doh_servers = true
  42. ## Require servers defined by remote sources to satisfy specific properties
  43. # Server must support DNS security extensions (DNSSEC)
  44. require_dnssec = false
  45. # Server must not log user queries (declarative)
  46. require_nolog = true
  47. # Server must not enforce its own blacklist (for parental control, ads blocking...)
  48. require_nofilter = true
  49. # Server names to avoid even if they match all criteria
  50. disabled_server_names = []
  51. ## Always use TCP to connect to upstream servers.
  52. ## This can be useful if you need to route everything through Tor.
  53. ## Otherwise, leave this to `false`, as it doesn't improve security
  54. ## (dnscrypt-proxy will always encrypt everything even using UDP), and can
  55. ## only increase latency.
  56. force_tcp = true
  57. ## SOCKS proxy
  58. ## Uncomment the following line to route all TCP connections to a local Tor node
  59. ## Tor doesn't support UDP, so set `force_tcp` to `true` as well.
  60. # proxy = 'socks5://127.0.0.1:9050'
  61. ## HTTP/HTTPS proxy
  62. ## Only for DoH servers
  63. # http_proxy = 'http://127.0.0.1:8888'
  64. ## How long a DNS query will wait for a response, in milliseconds
  65. timeout = 2500
  66. ## Keepalive for HTTP (HTTPS, HTTP/2) queries, in seconds
  67. keepalive = 30
  68. ## Response for blocked queries. Options are `refused`, `hinfo` (default) or
  69. ## an IP response. To give an IP response, use the format `a:<IPv4>,aaaa:<IPv6>`.
  70. ## Using the `hinfo` option means that some responses will be lies.
  71. ## Unfortunately, the `hinfo` option appears to be required for Android 8+
  72. # blocked_query_response = 'refused'
  73. ## Load-balancing strategy: 'p2' (default), 'ph', 'first' or 'random'
  74. # lb_strategy = 'p2'
  75. ## Set to `true` to constantly try to estimate the latency of all the resolvers
  76. ## and adjust the load-balancing parameters accordingly, or to `false` to disable.
  77. # lb_estimator = true
  78. ## Log level (0-6, default: 2 - 0 is very verbose, 6 only contains fatal errors)
  79. # log_level = 2
  80. ## log file for the application
  81. log_file = '/dev/stdout'
  82. ## Use the system logger (syslog on Unix, Event Log on Windows)
  83. # use_syslog = true
  84. ## Delay, in minutes, after which certificates are reloaded
  85. cert_refresh_delay = 240
  86. ## DNSCrypt: Create a new, unique key for every single DNS query
  87. ## This may improve privacy but can also have a significant impact on CPU usage
  88. ## Only enable if you don't have a lot of network load
  89. # dnscrypt_ephemeral_keys = false
  90. ## DoH: Disable TLS session tickets - increases privacy but also latency
  91. # tls_disable_session_tickets = false
  92. ## DoH: Use a specific cipher suite instead of the server preference
  93. ## 49199 = TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
  94. ## 49195 = TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
  95. ## 52392 = TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305
  96. ## 52393 = TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305
  97. ## 4865 = TLS_AES_128_GCM_SHA256
  98. ## 4867 = TLS_CHACHA20_POLY1305_SHA256
  99. ##
  100. ## On non-Intel CPUs such as MIPS routers and ARM systems (Android, Raspberry Pi...),
  101. ## the following suite improves performance.
  102. ## This may also help on Intel CPUs running 32-bit operating systems.
  103. ##
  104. ## Keep tls_cipher_suite empty if you have issues fetching sources or
  105. ## connecting to some DoH servers. Google and Cloudflare are fine with it.
  106. # tls_cipher_suite = [52392, 49199]
  107. ## Fallback resolver
  108. ## This is a normal, non-encrypted DNS resolver, that will be only used
  109. ## for one-shot queries when retrieving the initial resolvers list, and
  110. ## only if the system DNS configuration doesn't work.
  111. ## No user application queries will ever be leaked through this resolver,
  112. ## and it will not be used after IP addresses of resolvers URLs have been found.
  113. ## It will never be used if lists have already been cached, and if stamps
  114. ## don't include host names without IP addresses.
  115. ## It will not be used if the configured system DNS works.
  116. ## A resolver supporting DNSSEC is recommended. This may become mandatory.
  117. ##
  118. ## People in China may need to use 114.114.114.114:53 here.
  119. ## Other popular options include 8.8.8.8 and 1.1.1.1.
  120. fallback_resolver = '1.1.1.1:53'
  121. ## Never let dnscrypt-proxy try to use the system DNS settings;
  122. ## unconditionally use the fallback resolver.
  123. ignore_system_dns = true
  124. ## Maximum time (in seconds) to wait for network connectivity before
  125. ## initializing the proxy.
  126. ## Useful if the proxy is automatically started at boot, and network
  127. ## connectivity is not guaranteed to be immediately available.
  128. ## Use 0 to not test for connectivity at all (not recommended),
  129. ## and -1 to wait as much as possible.
  130. netprobe_timeout = 60
  131. ## Address and port to try initializing a connection to, just to check
  132. ## if the network is up. It can be any address and any port, even if
  133. ## there is nothing answering these on the other side. Just don't use
  134. ## a local address, as the goal is to check for Internet connectivity.
  135. ## On Windows, a datagram with a single, nul byte will be sent, only
  136. ## when the system starts.
  137. ## On other operating systems, the connection will be initialized
  138. ## but nothing will be sent at all.
  139. netprobe_address = '1.1.1.1:53'
  140. ## Offline mode - Do not use any remote encrypted servers.
  141. ## The proxy will remain fully functional to respond to queries that
  142. ## plugins can handle directly (forwarding, cloaking, ...)
  143. # offline_mode = false
  144. ## Additional data to attach to outgoing queries.
  145. ## These strings will be added as TXT records to queries.
  146. ## Do not use, except on servers explicitly asking for extra data
  147. ## to be present.
  148. # query_meta = ["key1:value1", "key2:value2", "key3:value3"]
  149. ## Automatic log files rotation
  150. # Maximum log files size in MB
  151. log_files_max_size = 10
  152. # How long to keep backup files, in days
  153. log_files_max_age = 7
  154. # Maximum log files backups to keep (or 0 to keep all backups)
  155. log_files_max_backups = 1
  156. #########################
  157. # Filters #
  158. #########################
  159. ## Immediately respond to IPv6-related queries with an empty response
  160. ## This makes things faster when there is no IPv6 connectivity, but can
  161. ## also cause reliability issues with some stub resolvers.
  162. ## Do not enable if you added a validating resolver such as dnsmasq in front
  163. ## of the proxy.
  164. block_ipv6 = false
  165. ##################################################################################
  166. # Route queries for specific domains to a dedicated set of servers #
  167. ##################################################################################
  168. ## Example map entries (one entry per line):
  169. ## example.com 9.9.9.9
  170. ## example.net 9.9.9.9,8.8.8.8,1.1.1.1
  171. # forwarding_rules = 'forwarding-rules.txt'
  172. ###############################
  173. # Cloaking rules #
  174. ###############################
  175. ## Cloaking returns a predefined address for a specific name.
  176. ## In addition to acting as a HOSTS file, it can also return the IP address
  177. ## of a different name. It will also do CNAME flattening.
  178. ##
  179. ## Example map entries (one entry per line)
  180. ## example.com 10.1.1.1
  181. ## www.google.com forcesafesearch.google.com
  182. #cloaking_rules = '/etc/dnscrypt-proxy/cloaking-rules.txt'
  183. ###########################
  184. # DNS cache #
  185. ###########################
  186. ## Enable a DNS cache to reduce latency and outgoing traffic
  187. cache = true
  188. ## Cache size
  189. cache_size = 512
  190. ## Minimum TTL for cached entries
  191. cache_min_ttl = 600
  192. ## Maximum TTL for cached entries
  193. cache_max_ttl = 86400
  194. ## Minimum TTL for negatively cached entries
  195. cache_neg_min_ttl = 60
  196. ## Maximum TTL for negatively cached entries
  197. cache_neg_max_ttl = 600
  198. ###############################
  199. # Query logging #
  200. ###############################
  201. ## Log client queries to a file
  202. [query_log]
  203. ## Path to the query log file (absolute, or relative to the same directory as the executable file)
  204. file = 'query.log'
  205. ## Query log format (currently supported: tsv and ltsv)
  206. format = 'tsv'
  207. ## Do not log these query types, to reduce verbosity. Keep empty to log everything.
  208. # ignored_qtypes = ['DNSKEY', 'NS']
  209. ############################################
  210. # Suspicious queries logging #
  211. ############################################
  212. ## Log queries for nonexistent zones
  213. ## These queries can reveal the presence of malware, broken/obsolete applications,
  214. ## and devices signaling their presence to 3rd parties.
  215. [nx_log]
  216. ## Path to the query log file (absolute, or relative to the same directory as the executable file)
  217. file = '/dev/stdout'
  218. ## Query log format (currently supported: tsv and ltsv)
  219. format = 'tsv'
  220. ######################################################
  221. # Pattern-based blocking (blacklists) #
  222. ######################################################
  223. ## Blacklists are made of one pattern per line. Example of valid patterns:
  224. ##
  225. ## example.com
  226. ## =example.com
  227. ## *sex*
  228. ## ads.*
  229. ## ads*.example.*
  230. ## ads*.example[0-9]*.com
  231. ##
  232. ## Example blacklist files can be found at https://download.dnscrypt.info/blacklists/
  233. ## A script to build blacklists from public feeds can be found in the
  234. ## `utils/generate-domains-blacklists` directory of the dnscrypt-proxy source code.
  235. [blacklist]
  236. ## Path to the file of blocking rules (absolute, or relative to the same directory as the executable file)
  237. # blacklist_file = 'blacklist.txt'
  238. ## Optional path to a file logging blocked queries
  239. # log_file = 'blocked.log'
  240. ## Optional log format: tsv or ltsv (default: tsv)
  241. # log_format = 'tsv'
  242. ###########################################################
  243. # Pattern-based IP blocking (IP blacklists) #
  244. ###########################################################
  245. ## IP blacklists are made of one pattern per line. Example of valid patterns:
  246. ##
  247. ## 127.*
  248. ## fe80:abcd:*
  249. ## 192.168.1.4
  250. [ip_blacklist]
  251. ## Path to the file of blocking rules (absolute, or relative to the same directory as the executable file)
  252. # blacklist_file = 'ip-blacklist.txt'
  253. ## Optional path to a file logging blocked queries
  254. # log_file = 'ip-blocked.log'
  255. ## Optional log format: tsv or ltsv (default: tsv)
  256. # log_format = 'tsv'
  257. ######################################################
  258. # Pattern-based whitelisting (blacklists bypass) #
  259. ######################################################
  260. ## Whitelists support the same patterns as blacklists
  261. ## If a name matches a whitelist entry, the corresponding session
  262. ## will bypass names and IP filters.
  263. ##
  264. ## Time-based rules are also supported to make some websites only accessible at specific times of the day.
  265. [whitelist]
  266. ## Path to the file of whitelisting rules (absolute, or relative to the same directory as the executable file)
  267. # whitelist_file = 'whitelist.txt'
  268. ## Optional path to a file logging whitelisted queries
  269. # log_file = 'whitelisted.log'
  270. ## Optional log format: tsv or ltsv (default: tsv)
  271. # log_format = 'tsv'
  272. ##########################################
  273. # Time access restrictions #
  274. ##########################################
  275. ## One or more weekly schedules can be defined here.
  276. ## Patterns in the name-based blocklist can optionally be followed with @schedule_name
  277. ## to apply the pattern 'schedule_name' only when it matches a time range of that schedule.
  278. ##
  279. ## For example, the following rule in a blacklist file:
  280. ## *.youtube.* @time-to-sleep
  281. ## would block access to YouTube only during the days, and period of the days
  282. ## define by the 'time-to-sleep' schedule.
  283. ##
  284. ## {after='21:00', before= '7:00'} matches 0:00-7:00 and 21:00-0:00
  285. ## {after= '9:00', before='18:00'} matches 9:00-18:00
  286. [schedules]
  287. # [schedules.'time-to-sleep']
  288. # mon = [{after='21:00', before='7:00'}]
  289. # tue = [{after='21:00', before='7:00'}]
  290. # wed = [{after='21:00', before='7:00'}]
  291. # thu = [{after='21:00', before='7:00'}]
  292. # fri = [{after='23:00', before='7:00'}]
  293. # sat = [{after='23:00', before='7:00'}]
  294. # sun = [{after='21:00', before='7:00'}]
  295. # [schedules.'work']
  296. # mon = [{after='9:00', before='18:00'}]
  297. # tue = [{after='9:00', before='18:00'}]
  298. # wed = [{after='9:00', before='18:00'}]
  299. # thu = [{after='9:00', before='18:00'}]
  300. # fri = [{after='9:00', before='17:00'}]
  301. #########################
  302. # Servers #
  303. #########################
  304. ## Remote lists of available servers
  305. ## Multiple sources can be used simultaneously, but every source
  306. ## requires a dedicated cache file.
  307. ##
  308. ## Refer to the documentation for URLs of public sources.
  309. ##
  310. ## A prefix can be prepended to server names in order to
  311. ## avoid collisions if different sources share the same for
  312. ## different servers. In that case, names listed in `server_names`
  313. ## must include the prefixes.
  314. ##
  315. ## If the `urls` property is missing, cache files and valid signatures
  316. ## must be already present; This doesn't prevent these cache files from
  317. ## expiring after `refresh_delay` hours.
  318. [sources]
  319. ## An example of a remote source from https://github.com/DNSCrypt/dnscrypt-resolvers
  320. [sources.'public-resolvers']
  321. urls = ['https://raw.githubusercontent.com/DNSCrypt/dnscrypt-resolvers/master/v2/public-resolvers.md', 'https://download.dnscrypt.info/resolvers-list/v2/public-resolvers.md']
  322. cache_file = 'public-resolvers.md'
  323. minisign_key = 'RWQf6LRCGA9i53mlYecO4IzT51TGPpvWucNSCh1CBM0QTaLn73Y7GFO3'
  324. prefix = ''
  325. ## Quad9 over DNSCrypt - https://quad9.net/
  326. # [sources.quad9-resolvers]
  327. # urls = ['https://www.quad9.net/quad9-resolvers.md']
  328. # minisign_key = 'RWQBphd2+f6eiAqBsvDZEBXBGHQBJfeG6G+wJPPKxCZMoEQYpmoysKUN'
  329. # cache_file = 'quad9-resolvers.md'
  330. # prefix = 'quad9-'
  331. ## Another example source, with resolvers censoring some websites not appropriate for children
  332. ## This is a subset of the `public-resolvers` list, so enabling both is useless
  333. # [sources.'parental-control']
  334. # urls = ['https://raw.githubusercontent.com/DNSCrypt/dnscrypt-resolvers/master/v2/parental-control.md', 'https://download.dnscrypt.info/resolvers-list/v2/parental-control.md']
  335. # cache_file = 'parental-control.md'
  336. # minisign_key = 'RWQf6LRCGA9i53mlYecO4IzT51TGPpvWucNSCh1CBM0QTaLn73Y7GFO3'
  337. ## Optional, local, static list of additional servers
  338. ## Mostly useful for testing your own servers.
  339. ################################
  340. # Anonymized DNS #
  341. ################################
  342. #[anonymized_dns]
  343. ## Define one or more routes, i.e. indirect ways to reach servers.
  344. ## A set of possible relay servers is assigned to each DNS resolver.
  345. ## A relay can be specified as a DNS Stamp (either a relay stamp, or a
  346. ## DNSCrypt stamp), an IP:port, a hostname:port, or a server name, if
  347. ## the server is in the servers_list.
  348. # routes = [
  349. # { server_name='comodo-02', via=['sdns://gRIxMzcuNzQuMjIzLjIzNDo0NDM'] },
  350. # { server_name='quad9-dnscrypt-ip4-nofilter-pri', via=['sdns://gRIxMzcuNzQuMjIzLjIzNDo0NDM'] }
  351. # ]
  352. [static]
  353. # [static.'myserver']
  354. # stamp = 'sdns:AQcAAAAAAAAAAAAQMi5kbnNjcnlwdC1jZXJ0Lg'