From f16c035f3c9f60b131892ac18a5f87a987a0f1b7 Mon Sep 17 00:00:00 2001 From: Grant Slater Date: Tue, 30 Aug 2022 13:10:50 +0100 Subject: [PATCH] Add test.osm2pgsql A record --- src/osm2pgsql.js | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/osm2pgsql.js b/src/osm2pgsql.js index 82c7686..e7cb962 100644 --- a/src/osm2pgsql.js +++ b/src/osm2pgsql.js @@ -15,9 +15,12 @@ D(DOMAIN, REGISTRAR, DnsProvider(PROVIDER), // Main web server and it's aliases - A("@", "138.201.190.130", TTL("10m")), - AAAA("@", "2a01:4f8:1c17:6433::2", TTL("10m")), - A("www", "138.201.190.130", TTL("10m")), - AAAA("www", "2a01:4f8:1c17:6433::2", TTL("10m")) + A("@", "138.201.190.130"), + AAAA("@", "2a01:4f8:1c17:6433::2"), + A("www", "138.201.190.130"), + AAAA("www", "2a01:4f8:1c17:6433::2"), + + // Test server for osm2pgsql development + A("test", "135.181.221.216") ); -- 2.45.1