From 5e7ed7fe83b5662b6c259e56a6b54a0552f2d715 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Mon, 29 Apr 2024 23:38:28 +0200 Subject: [PATCH] Tested if the `resolver` directive fixes not being able to resolve `klokantech.github.io` --- data/nginx.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/data/nginx.conf b/data/nginx.conf index 3aceac211..596ca0e1b 100644 --- a/data/nginx.conf +++ b/data/nginx.conf @@ -47,6 +47,7 @@ http { } location ~ ^/cdn/natural_earth_2_shaded_relief.raster/(.+)$ { + resolver 1.1.1.1; proxy_pass https://klokantech.github.io/naturalearthtiles/tiles/natural_earth_2_shaded_relief.raster/$1; proxy_set_header Host $proxy_host; }