From 857120f799fe28ac4116f2c02777ec25f0ba1c07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20L=C3=B6tzsch?= Date: Thu, 17 Mar 2022 12:07:24 +0100 Subject: [PATCH] deployment: serve warhelp.broenradio.org --- deployment/modules/dns.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/deployment/modules/dns.nix b/deployment/modules/dns.nix index 5e91b18..41d8dd4 100644 --- a/deployment/modules/dns.nix +++ b/deployment/modules/dns.nix @@ -21,6 +21,10 @@ in master = true; file = util.writeZone "search.warhelp.eu" (import (./dns + "/search.warhelp.eu.nix") {inherit dns;}); }; + "warhelp.broenradio.org" = { ## till NS-record of "search.warhelp.eu" is set + master = true; + file = util.writeZone "warhelp.broenradio.org" (import (./dns + "/search.warhelp.eu.nix") {inherit dns;}); + }; }; }; networking.firewall.allowedTCPPorts = [ 53 ];