diff options
author | Ian Bashford <ianbashford@gmail.com> | 2019-12-03 17:37:33 +0000 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-12-03 19:01:56 +0100 |
commit | 0a95cf27b24bcd416522236fde74796ce05af78f (patch) | |
tree | 7c3c9e11b0408e8fcf4bfd5864dfc29875ca5863 /community/dnscrypt-proxy/config-full-paths.patch | |
parent | af2701a7c81348c0242c55d4ba392a7df42ce6a7 (diff) | |
download | aports-0a95cf27b24bcd416522236fde74796ce05af78f.tar.bz2 aports-0a95cf27b24bcd416522236fde74796ce05af78f.tar.xz |
community/dnscrypt-proxy: upgrade to 2.0.34
add functionality for local DOH server
Diffstat (limited to 'community/dnscrypt-proxy/config-full-paths.patch')
-rw-r--r-- | community/dnscrypt-proxy/config-full-paths.patch | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/community/dnscrypt-proxy/config-full-paths.patch b/community/dnscrypt-proxy/config-full-paths.patch index b2149acfde..19ab63da5c 100644 --- a/community/dnscrypt-proxy/config-full-paths.patch +++ b/community/dnscrypt-proxy/config-full-paths.patch @@ -37,8 +37,10 @@ index 0000000..736ec29 + + +## List of local addresses and ports to listen to. Can be IPv4 and/or IPv6. ++## Example with both IPv4 and IPv6: ++## listen_addresses = ['127.0.0.1:53', '[::1]:53'] + -+listen_addresses = ['127.0.0.1:53', '[::1]:53'] ++listen_addresses = ['127.0.0.1:53'] + + +## Maximum number of simultaneous client connections to accept @@ -344,6 +346,37 @@ index 0000000..736ec29 + + + ++################################## ++# Local DoH server # ++################################## ++ ++[local_doh] ++ ++## dnscrypt-proxy can act as a local DoH server. By doing so, web browsers ++## requiring a direct connection to a DoH server in order to enable some ++## features will enable these, without bypassing your DNS proxy.. ++ ++## Addresses that the local DoH server should listen to ++ ++# listen_addresses = ['127.0.0.1:3000'] ++ ++ ++## Path of the DoH URL. This is not a file, but the part after the hostname ++## in the URL. By convention, `/dns-query` is frequently chosen. ++## For each `listen_address` the complete URL to access the server will be: ++## `https://<listen_address><path>` (ex: `https://127.0.0.1/dns-query`) ++ ++# path = "/dns-query" ++ ++ ++## Certificate file and key - Note that the certificate has to be trusted. ++## See the Wiki for more information. ++ ++# cert_file = "localhost.pem" ++# cert_key_file = "localhost.pem" ++ ++ ++ +############################### +# Query logging # +############################### |