From 872c5a0ba853fdd4a07a290992de8fc8feba31ac Mon Sep 17 00:00:00 2001 From: quindecim Date: Sat, 23 Jan 2021 04:50:01 -0500 Subject: [PATCH] [UPSTREAM] - Explain how to listen to all IP addresses https://github.com/DNSCrypt/dnscrypt-proxy/commit/53c8e2535224fe7b44f25bd92086b6e677e17907 --- config/example-docs/example-dnscrypt-proxy.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/example-docs/example-dnscrypt-proxy.toml b/config/example-docs/example-dnscrypt-proxy.toml index 12d9bde..8c561a0 100644 --- a/config/example-docs/example-dnscrypt-proxy.toml +++ b/config/example-docs/example-dnscrypt-proxy.toml @@ -35,6 +35,9 @@ ## 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'] +## +## To listen to all IPv4 addresses, use `listen_addresses = ['0.0.0.0:53']` +## To listen to all IPv4+IPv6 addresses, use `listen_addresses = ['[::]:53']` listen_addresses = ['127.0.0.1:53']