]> git.openstreetmap.org Git - dns.git/commitdiff
Add test.osm2pgsql A record
authorGrant Slater <git@firefishy.com>
Tue, 30 Aug 2022 12:10:50 +0000 (13:10 +0100)
committerGrant Slater <git@firefishy.com>
Tue, 30 Aug 2022 12:11:01 +0000 (13:11 +0100)
src/osm2pgsql.js

index 82c7686efd9a76c9245d53583f14b2ef506e37ca..e7cb962e2e24f12f0fc8416c75d1a4d7a103a42d 100644 (file)
@@ -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")
 
 );