mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 22:57:55 +00:00
Gabriel Arazas
eb1003f7e6
CoreDNS doesn't have dynamic updates available yet (though there are PRs and discussions for it) so we'll have to go with something that has it. Also, it provides an opportunity for me to use the de-facto software for this.
20 lines
406 B
Dns
20 lines
406 B
Dns
$TTL 12h
|
|
$ORIGIN plover.foodogsquared.one.
|
|
|
|
@ 3600 IN SOA ns hostmaster.foodogsquared.one. (
|
|
2023062201 ; serial number
|
|
1h ; refresh
|
|
15m ; update retry
|
|
3w ; expiry
|
|
2h ; nx = nxdomain ttl
|
|
)
|
|
3600 IN NS ns
|
|
|
|
ns 3600 IN A @ploverLANIPv4@
|
|
3600 IN AAAA @ploverLANIPv6@
|
|
|
|
* 3600 IN A @ploverLANIPv4@
|
|
3600 IN AAAA @ploverLANIPv6@
|
|
|
|
; vim: expandtab! tabstop=8 shiftwidth=8 filetype=dns
|