From bc22f94eebf4e7209b78efa964a6d7f7cf74a8b3 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sun, 24 Nov 2019 10:31:40 +0100 Subject: [PATCH] Don't listen to IPv6 in the example config file Some hosts don't support IPv6, and the default (without anything in the config file) is only the IPv4 address anyway. --- dnscrypt-proxy/example-dnscrypt-proxy.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dnscrypt-proxy/example-dnscrypt-proxy.toml b/dnscrypt-proxy/example-dnscrypt-proxy.toml index 736ec29b..6a9095af 100644 --- a/dnscrypt-proxy/example-dnscrypt-proxy.toml +++ b/dnscrypt-proxy/example-dnscrypt-proxy.toml @@ -31,8 +31,10 @@ ## 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