mirror of
https://github.com/minoplhy/DNSserver.git
synced 2024-11-24 10:16:54 +00:00
28 lines
845 B
TOML
28 lines
845 B
TOML
|
# This Client Configuration are made for dnscrypt-proxy and Thanks ookangzheng for sample configuration files
|
||
|
# Based on https://github.com/ookangzheng/blahdns/blob/master/client-conf/dnscrypt/dnscrypt-proxy.toml
|
||
|
server_names = ['ProviderName', 'ProviderNamev6-Ifexisted']
|
||
|
listen_addresses = ['127.0.0.1:53', '[::1]:53']
|
||
|
max_clients = 250
|
||
|
force_tcp = false
|
||
|
timeout = 2000
|
||
|
keepalive = 30
|
||
|
|
||
|
# Load-balancing strategy: 'p2' (default), 'ph', 'fastest' or 'random'
|
||
|
lb_strategy = 'fastest'
|
||
|
fallback_resolver = '94.140.14.14:53'
|
||
|
ignore_system_dns = false
|
||
|
netprobe_timeout = 30
|
||
|
cache = false
|
||
|
cache_size = 512
|
||
|
cache_min_ttl = 90
|
||
|
cache_max_ttl = 1800
|
||
|
cache_neg_min_ttl = 2
|
||
|
cache_neg_max_ttl = 6
|
||
|
|
||
|
[static]
|
||
|
## Publickey: YOURPUBKEY
|
||
|
[static.'ProviderName']
|
||
|
stamp = 'sdns://YOUR-DNS-STAMPS'
|
||
|
[static.'ProviderNamev6-Ifexisted']
|
||
|
stamp = 'sdns://YOUR-DNS-STAMPS'
|