all repos — dns @ b8aae6640573519162e0fcffe7daaccc9b6637f3

DNS records for my domains, managed via dnscontrol

add more secondary DNS providers

Alin
commit

b8aae6640573519162e0fcffe7daaccc9b6637f3

parent

4da54456c935e53f41b8e1c9696f634c77e78e05

1 file changed, 10 insertions(+), 5 deletions(-)

changed files
M dnsconfig.jsdnsconfig.js
@@ -112,11 +112,16 @@ var heHosts = [1, 2, 3, 4, 5].map(function (i) {
return 'ns' + i + '.he.net.' }) -var nameservers = heHosts.map(function (hostname) { +var nameservers = [ + 'ns-global.kjsl.com.', + 'puck.nether.net.' +].concat(heHosts) + +var ns_records = nameservers.map(function (hostname) { return NAMESERVER(hostname) }) -var soa = SOA('@', 'ns2.he.net.', 'hostmaster.alanpearce.eu.', 43200, 3600, 2419200, 120) +var soa = SOA('@', nameservers[0], 'hostmaster.alanpearce.eu.', 43200, 3600, 2419200, 120) // Providers:
@@ -135,7 +140,7 @@ RegistrarOVH,
DnsProvider(PowerDNS), soa, - nameservers, + ns_records, CAA_BUILDER({ iodef: 'mailto:alan@alanpearce.eu',
@@ -189,7 +194,7 @@ RegistrarOVH,
DnsProvider(PowerDNS), soa, - nameservers, + ns_records, CAA_BUILDER({ iodef: 'mailto:alin@alin.ovh',
@@ -292,7 +297,7 @@ parts: ['v=spf1', '-all'],
}), soa, - nameservers, + ns_records, ALIAS('@', 'hasel.alin.ovh.'), HTTPS('@', 1, 'hasel.alin.ovh.', 'alpn=h3,h2 ipv4hint=auto ipv6hint=auto'),