add more secondary DNS providers
1 file changed, 10 insertions(+), 5 deletions(-)
changed files
M dnsconfig.js → dnsconfig.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'),