mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:15 +02:00
38 lines
865 B
Plaintext
38 lines
865 B
Plaintext
global {
|
|
perm_cache=16384;
|
|
cache_dir="/var/cache/pdnsd";
|
|
run_as="pdnsd";
|
|
server_ip = 0.0.0.0;
|
|
status_ctl = on;
|
|
query_method=udp_tcp;
|
|
min_ttl=15m; # Retain cached entries at least 15 minutes.
|
|
max_ttl=1w; # One week.
|
|
timeout=10; # Global timeout option (10 seconds).
|
|
neg_domain_pol=on;
|
|
udpbufsize=1024; # Upper limit on the size of UDP messages.
|
|
}
|
|
|
|
server {
|
|
label = "dnscrypt-proxy";
|
|
ip = 127.0.0.1;
|
|
port = 2053;
|
|
timeout = 4;
|
|
uptest = query;
|
|
interval = 15m;
|
|
proxy_only=on;
|
|
}
|
|
|
|
source {
|
|
owner=localhost;
|
|
file="/etc/hosts";
|
|
}
|
|
|
|
|
|
rr {
|
|
name=localhost;
|
|
reverse=on;
|
|
a=127.0.0.1;
|
|
owner=localhost;
|
|
soa=localhost,root.localhost,42,86400,900,86400,86400;
|
|
}
|