diff options
author | T3slider <t3slider@gmail.com> | 2014-10-05 23:38:01 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-10-11 00:13:58 +0700 |
commit | 1bbffca294904b2db7942a22b4b5c6fe6e7313fc (patch) | |
tree | f716f2ecc256984b0fab82c952fe1319b85cd208 /network/dnscrypt-proxy/dnsmasq.conf | |
parent | 7d79d345593986b00d9d2d509b419d5a8b3254df (diff) | |
download | slackbuilds-1bbffca294904b2db7942a22b4b5c6fe6e7313fc.tar.gz |
network/dnscrypt-proxy: Updated for version 1.4.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/dnscrypt-proxy/dnsmasq.conf')
-rw-r--r-- | network/dnscrypt-proxy/dnsmasq.conf | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/network/dnscrypt-proxy/dnsmasq.conf b/network/dnscrypt-proxy/dnsmasq.conf new file mode 100644 index 0000000000..9700cb2df9 --- /dev/null +++ b/network/dnscrypt-proxy/dnsmasq.conf @@ -0,0 +1,21 @@ +# Use dnsmasq as a caching DNS forwarder to dnscrypt-proxy. This configuration +# assumes dnscrypt-proxy is running on port 55. + +# Never forward plain names (without a dot or domain part) +domain-needed + +# Never forward addresses in the non-routed address spaces. +bogus-priv + +# Don't use /etc/resolv.conf. Forward all queries to dnscrypt-proxy. +no-resolv + +# Use the resolver on localhost port 55 (dnscrypt-proxy) +server=127.0.0.1#55 + +# Listen on localhost. Default port 53 +listen-address=127.0.0.1 + +# Pass on the upstream DNSSEC flag. Only enable this if you trust the upstream +# resolver. +#proxy-dnssec |