From 73e7406b377ac963123e3602fa053a3dc96c5899 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Sun, 10 Sep 2023 15:09:50 +0100 Subject: [PATCH] [no ci] fix: sites directly on skynet now relate to the root domain --- applications/skynet.ie.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/applications/skynet.ie.nix b/applications/skynet.ie.nix index 6008bdb..823b4f0 100644 --- a/applications/skynet.ie.nix +++ b/applications/skynet.ie.nix @@ -31,8 +31,8 @@ skynet_dns.records = [ # means root domain, so skynet.ie {record="@"; r_type="A"; value=cfg.host.ip;} - {record="2016"; r_type="CNAME"; value="skynet";} - {record="discord"; r_type="CNAME"; value="skynet";} + {record="2016"; r_type="CNAME"; value="@";} + {record="discord"; r_type="CNAME"; value="@";} ]; networking.firewall.allowedTCPPorts = [80 443];