From f1189a9554db2ad103e1c6858ed7cc3c168aecd4 Mon Sep 17 00:00:00 2001
From: Patrick Oberdorf <p.oberdorf@mobilistics.de>
Date: Thu, 31 Aug 2023 22:46:28 +0200
Subject: [PATCH] bind remote control to 0.0.0.0 instead of localhost

---
 assets/unbound.conf | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/assets/unbound.conf b/assets/unbound.conf
index 088d364..eb96ddf 100644
--- a/assets/unbound.conf
+++ b/assets/unbound.conf
@@ -601,11 +601,11 @@ remote-control:
 
 	# what interfaces are listened to for remote control.
 	# give 0.0.0.0 and ::0 to listen to all interfaces.
-	# control-interface: 127.0.0.1
-	# control-interface: ::1
+	control-interface: 0.0.0.0
+	control-interface: ::0
 
 	# port number for remote control operations.
-	# control-port: 8953
+	control-port: 8953
 
 	# unbound server key file.
 	server-key-file: "/usr/local/etc/unbound/unbound_server.key"
-- 
GitLab