From 3562c3c13ec601f7aeb748d65cf6636eefe5c3de Mon Sep 17 00:00:00 2001 From: Paul Norman Date: Wed, 22 Jun 2022 19:18:39 -0700 Subject: [PATCH] Direct render. to new render servers Removing the remains of gdns broke render.openstreetmap.org, so this adds it back, pointing at the new European render servers which have the most capacity. Long term, a CDN that can handle failover would work better, but this is a short-term fix to get it working. --- src/openstreetmap.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/openstreetmap.js b/src/openstreetmap.js index 9e4e1c0..5041068 100644 --- a/src/openstreetmap.js +++ b/src/openstreetmap.js @@ -348,6 +348,11 @@ D(DOMAIN, REGISTRAR, DnsProvider(PROVIDER), // Fastly DNS based ACME Challenge requirement CNAME("_acme-challenge.tile", "bxve5ryiwwv7woiraq.fastly-validations.com.", TTL("10m")), + A("render", CULEBRE_IPV4), + A("render", NIDHOGG_IPV4), + AAAA("render", CULEBRE_IPV6), + AAAA("render", NIDHOGG_IPV6), + // Services machine A("ironbelly", IRONBELLY_IPV4), -- 2.45.1