aboutsummaryrefslogtreecommitdiffstats
path: root/community/dnscrypt-proxy/config-full-paths.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/dnscrypt-proxy/config-full-paths.patch')
-rw-r--r--community/dnscrypt-proxy/config-full-paths.patch35
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 #
+###############################