From 499078e0f825254e14c98b0b0b9716503f7dd05e Mon Sep 17 00:00:00 2001 From: Colin Date: Tue, 21 Feb 2023 11:18:27 +0000 Subject: [PATCH] trust-dns: update the address we listen on --- hosts/by-name/servo/services/trust-dns.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/by-name/servo/services/trust-dns.nix b/hosts/by-name/servo/services/trust-dns.nix index 17521ca8..d7211e65 100644 --- a/hosts/by-name/servo/services/trust-dns.nix +++ b/hosts/by-name/servo/services/trust-dns.nix @@ -6,7 +6,7 @@ sane.services.trust-dns.listenAddrsIPv4 = [ # specify each address explicitly, instead of using "*". # this ensures responses are sent from the address at which the request was received. - "192.168.0.5" + "192.168.15.28" # TODO: fetch IP via `config` "10.0.1.5" ]; sane.services.trust-dns.quiet = true;