Prepare for beta12

This commit is contained in:
Frank Denis 2018-01-30 15:58:13 +01:00
parent 61bad01726
commit c39197f7b2
3 changed files with 11 additions and 6 deletions

View File

@ -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

View File

@ -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) #
######################################################

View File

@ -13,7 +13,7 @@ import (
)
const (
AppVersion = "2.0.0beta11"
AppVersion = "2.0.0beta12"
ConfigFileName = "dnscrypt-proxy.toml"
)