diff options
author | Georgy Yakovlev <ya@sysdump.net> | 2018-04-11 23:53:25 -0700 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-04-20 09:27:32 +0200 |
commit | 0481c755b3192bf2f9e40c9ca83128b3f97b55b8 (patch) | |
tree | b9cbe05fffcb123b168144e9540d62dfcbe656b5 /net-dns/dnscrypt-proxy/files | |
parent | net-misc/youtube-viewer: Remove old versions up till latest stable (diff) | |
download | gentoo-0481c755b3192bf2f9e40c9ca83128b3f97b55b8.tar.gz gentoo-0481c755b3192bf2f9e40c9ca83128b3f97b55b8.tar.bz2 gentoo-0481c755b3192bf2f9e40c9ca83128b3f97b55b8.zip |
net-dns/dnscrypt-proxy: version bump to 2.0.10
Use upstream provided systemd unit.
It unit now offers additional hardening:
DynamicUsers and private directories.
ebuild no longer owns log directory, service
manages will create it on startup automatically.
Package-Manager: Portage-2.3.28, Repoman-2.3.9
Diffstat (limited to 'net-dns/dnscrypt-proxy/files')
-rw-r--r-- | net-dns/dnscrypt-proxy/files/config-full-paths-r10.patch | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/net-dns/dnscrypt-proxy/files/config-full-paths-r10.patch b/net-dns/dnscrypt-proxy/files/config-full-paths-r10.patch new file mode 100644 index 000000000000..aba278c221a2 --- /dev/null +++ b/net-dns/dnscrypt-proxy/files/config-full-paths-r10.patch @@ -0,0 +1,72 @@ +--- dnscrypt-proxy-2.0.9/dnscrypt-proxy/example-dnscrypt-proxy.toml 2018-04-11 05:05:16.000000000 -0700 ++++ dnscrypt-proxy-2.0.9/dnscrypt-proxy/dnscrypt-proxy.toml 2018-04-11 22:29:21.810501858 -0700 +@@ -96,7 +96,7 @@ + + ## log file for the application + +-# log_file = 'dnscrypt-proxy.log' ++# log_file = '/var/log/dnscrypt-proxy/dnscrypt-proxy.log' + + + ## Use the system logger (syslog on Unix, Event Log on Windows) +@@ -254,7 +254,7 @@ + + ## Path to the query log file (absolute, or relative to the same directory as the executable file) + +- # file = 'query.log' ++ # file = '/var/log/dnscrypt-proxy/query.log' + + + ## Query log format (currently supported: tsv and ltsv) +@@ -280,7 +280,7 @@ + + ## Path to the query log file (absolute, or relative to the same directory as the executable file) + +- # file = 'nx.log' ++ # file = '/var/log/dnscrypt-proxy/nx.log' + + + ## Query log format (currently supported: tsv and ltsv) +@@ -315,7 +315,7 @@ + + ## Optional path to a file logging blocked queries + +- # log_file = 'blocked.log' ++ # log_file = '/var/log/dnscrypt-proxy/blocked.log' + + + ## Optional log format: tsv or ltsv (default: tsv) +@@ -343,7 +343,7 @@ + + ## Optional path to a file logging blocked queries + +- # log_file = 'ip-blocked.log' ++ # log_file = '/var/log/dnscrypt-proxy/ip-blocked.log' + + + ## Optional log format: tsv or ltsv (default: tsv) +@@ -371,7 +371,7 @@ + + ## Optional path to a file logging whitelisted queries + +- # log_file = 'whitelisted.log' ++ # log_file = '/var/log/dnscrypt-proxy/whitelisted.log' + + + ## Optional log format: tsv or ltsv (default: tsv) +@@ -441,7 +441,7 @@ + + [sources.'public-resolvers'] + urls = ['https://raw.githubusercontent.com/DNSCrypt/dnscrypt-resolvers/master/v2/public-resolvers.md', 'https://download.dnscrypt.info/resolvers-list/v2/public-resolvers.md'] +- cache_file = 'public-resolvers.md' ++ cache_file = '/var/cache/dnscrypt-proxy/public-resolvers.md' + minisign_key = 'RWQf6LRCGA9i53mlYecO4IzT51TGPpvWucNSCh1CBM0QTaLn73Y7GFO3' + refresh_delay = 72 + prefix = '' +@@ -451,7 +451,7 @@ + + # [sources.'parental-control'] + # urls = ['https://raw.githubusercontent.com/DNSCrypt/dnscrypt-resolvers/master/v2/parental-control.md', 'https://download.dnscrypt.info/resolvers-list/v2/parental-control.md'] +- # cache_file = 'parental-control.md' ++ # cache_file = '/var/cache/dnscrypt-proxy/parental-control.md' + # minisign_key = 'RWQf6LRCGA9i53mlYecO4IzT51TGPpvWucNSCh1CBM0QTaLn73Y7GFO3' |