Skip to content

Commit

Permalink
Add a few initial HTTPS/SVCB DNS records
Browse files Browse the repository at this point in the history
  • Loading branch information
Firefishy committed Jun 20, 2024
1 parent 85894c3 commit 04e97c7
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions src/openstreetmap.js
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,12 @@ D(DOMAIN, REGISTRAR, DnsProvider(PROVIDER),
A("spike-08.ams", SPIKE08_INTERNAL),
A("spike-08.oob", SPIKE08_OOB),

// HTTPS / SVCB records
HTTPS("www", 1, ".", "alpn=h2"),
HTTPS("api", 1, ".", "alpn=h2"),
HTTPS("maps", 1, ".", "alpn=h2"),
HTTPS("mapz", 1, ".", "alpn=h2"),

// Nominatim servers

A("dulcy", DULCY_IPV4),
Expand Down Expand Up @@ -296,6 +302,9 @@ D(DOMAIN, REGISTRAR, DnsProvider(PROVIDER),
A("dribble.ams", DRIBBLE_INTERNAL),
A("dribble.oob", DRIBBLE_OOB),

// HTTPS / SVCB records
HTTPS("taginfo", 1, ".", "alpn=h2"),

// Tile servers

A("odin", ODIN_IPV4),
Expand Down Expand Up @@ -622,16 +631,28 @@ D(DOMAIN, REGISTRAR, DnsProvider(PROVIDER),

A("jakelong", JAKELONG_IPV4),
AAAA("jakelong", JAKELONG_IPV6),

A("community", JAKELONG_IPV4),
A("communities", JAKELONG_IPV4),
A("c", JAKELONG_IPV4),
AAAA("community", JAKELONG_IPV6),
AAAA("communities", JAKELONG_IPV6),
AAAA("c", JAKELONG_IPV6),

// HTTPS / SVCB records
HTTPS("community", 1, ".", "alpn=h2"),
HTTPS("communities", 1, ".", "alpn=h2"),
HTTPS("c", 1, ".", "alpn=h2"),

CNAME("community-cdn", "dualstack.n.sni.global.fastly.net."),
TXT("community", "google-site-verification=hQ8GZyj4KwnPqAX2oAzpbLrh6I5dfR08PSdL3icVkfg"),

A("forum", JAKELONG_IPV4),
AAAA("forum", JAKELONG_IPV6),

// HTTPS / SVCB records
HTTPS("forum", 1, ".", "alpn=h2"),

A("jakelong.dub", JAKELONG_INTERNAL),
A("jakelong.oob", JAKELONG_OOB),

Expand All @@ -641,6 +662,11 @@ D(DOMAIN, REGISTRAR, DnsProvider(PROVIDER),
A("support", RIDLEY_IPV4),
A("supporting", RIDLEY_IPV4),

// HTTPS / SVCB records
HTTPS("donate", 1, ".", "alpn=h2"),
HTTPS("support", 1, ".", "alpn=h2"),
HTTPS("supporting", 1, ".", "alpn=h2"),

// Spare servers

A("fume", FUME_IPV4),
Expand Down

0 comments on commit 04e97c7

Please sign in to comment.