From 4de129fd5d6686eb1ea7fcae4f9c976d0fe5623b Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Sun, 12 Feb 2023 22:43:41 +0000 Subject: [PATCH] Move switch2osm to naga --- src/switch2osm.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/switch2osm.js b/src/switch2osm.js index fa425c1..b00066f 100644 --- a/src/switch2osm.js +++ b/src/switch2osm.js @@ -27,7 +27,9 @@ D(DOMAIN, REGISTRAR, DnsProvider(PROVIDER), // Main web server and it's aliases - A("@", RIDLEY_IPV4, TTL("10m")), - A("www", RIDLEY_IPV4, TTL("10m")) + A("@", NAGA_IPV4, TTL("10m")), + AAAA("@", NAGA_IPV6, TTL("10m")), + A("www", NAGA_IPV4, TTL("10m")) + AAAA("www", NAGA_IPV6, TTL("10m")) ); -- 2.39.5