feat(dns01): switch to lab.dgnum.eu subdomain
All checks were successful
lint / check (push) Successful in 23s

This commit is contained in:
Constantin Gierczak--Galle 2024-12-06 14:44:40 +01:00
parent 45f573f917
commit a13acaedff
No known key found for this signature in database
2 changed files with 5 additions and 5 deletions

View file

@ -7,7 +7,7 @@ in
with dns.lib.combinators; with dns.lib.combinators;
{ {
SOA = { SOA = {
nameServer = "ns01.beta.dgnum.eu"; nameServer = "ns01.lab.dgnum.eu";
adminEmail = "dns@dgnum.eu"; adminEmail = "dns@dgnum.eu";
serial = 2019030800; serial = 2019030800;
retry = 3600; retry = 3600;
@ -15,8 +15,8 @@ with dns.lib.combinators;
}; };
NS = [ NS = [
"ns01.beta.dgnum.eu." "ns01.lab.dgnum.eu."
"ns02.beta.dgnum.eu." "ns02.lab.dgnum.eu."
]; ];
#A = [ "203.0.113.1" ]; #A = [ "203.0.113.1" ];

View file

@ -7,10 +7,10 @@ in
services.nsd = { services.nsd = {
enable = true; enable = true;
zones = { zones = {
"beta.dgnum.eu" = { "lab.dgnum.eu" = {
# provideXFR = [ ... ]; # provideXFR = [ ... ];
# notify = [ ... ]; # notify = [ ... ];
data = dns.lib.toString "beta.dgnum.eu" (import ./beta.dgnum.eu.nix { inherit dns lib; }); data = dns.lib.toString "lab.dgnum.eu" (import ./lab.dgnum.eu.nix { inherit dns lib; });
}; };
}; };
}; };