From c39197f7b2200b085387c2ddf59efcc6acbbe480 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Tue, 30 Jan 2018 15:58:13 +0100 Subject: [PATCH] Prepare for beta12 --- README.md | 2 +- dnscrypt-proxy/dnscrypt-proxy.toml | 13 +++++++++---- dnscrypt-proxy/main.go | 2 +- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 19ef56fd..017bebef 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ A flexible DNS proxy, with support for modern encrypted DNS protocols such as [DNSCrypt v2](https://github.com/DNSCrypt/dnscrypt-protocol/blob/master/DNSCRYPT-V2-PROTOCOL.txt) and DNS-over-HTTP/2. -## [dnscrypt-proxy 2.0.0beta11 is available for download!](https://github.com/jedisct1/dnscrypt-proxy/releases/latest) +## [dnscrypt-proxy 2.0.0beta12 is available for download!](https://github.com/jedisct1/dnscrypt-proxy/releases/latest) ## Installation diff --git a/dnscrypt-proxy/dnscrypt-proxy.toml b/dnscrypt-proxy/dnscrypt-proxy.toml index c416bcf6..de91f948 100644 --- a/dnscrypt-proxy/dnscrypt-proxy.toml +++ b/dnscrypt-proxy/dnscrypt-proxy.toml @@ -16,6 +16,7 @@ # server_names = ['scaleway-fr', 'google', 'yandex'] + ## List of local addresses and ports to listen to. Can be IPv4 and/or IPv6. ## To only use systemd activation sockets, use an empty set: [] @@ -24,7 +25,7 @@ listen_addresses = ['127.0.0.1:53', '[::1]:53'] ## Maximum number of simultaneous client connections to accept -max_clients = 100 +max_clients = 250 ## Require servers (from static definitions and from remote sources) to satisfy specific properties @@ -85,18 +86,20 @@ cert_refresh_delay = 30 ## Fallback resolver -## This is a normal, non-encrypted resolver, that will be only used +## This is a normal, non-encrypted DNS resolver, that will be only used ## for one-shot queries when retrieving the initial resolvers list, and ## only if the system DNS configuration doesn't work. ## No user application queries will ever be leaked through this resolver, ## and it will not be used after IP addresses of resolvers URLs have been found. -## It will never be used at all if lists have already been cached, and if -## stamps don't include host names without IP addresses. +## It will never be used if lists have already been cached, and if stamps +## don't include host names without IP addresses. +## It will not be used if the configured system DNS works. ## A resolver supporting DNSSEC is recommended. This may become mandatory. fallback_resolver = "9.9.9.9:53" + ######################### # Filters # ######################### @@ -151,6 +154,7 @@ cache_max_ttl = 86400 cache_neg_ttl = 60 + ############################### # Query logging # ############################### @@ -192,6 +196,7 @@ format = 'tsv' format = 'tsv' + ###################################################### # Pattern-based blocking (blacklists) # ###################################################### diff --git a/dnscrypt-proxy/main.go b/dnscrypt-proxy/main.go index 6d996803..7b9f90e9 100644 --- a/dnscrypt-proxy/main.go +++ b/dnscrypt-proxy/main.go @@ -13,7 +13,7 @@ import ( ) const ( - AppVersion = "2.0.0beta11" + AppVersion = "2.0.0beta12" ConfigFileName = "dnscrypt-proxy.toml" )