all repos — website @ 12ca100843a334c56f5b13d876ceab4ac561fa47

My website

Fix erroneous 200 responses on missing files

Revert "Replace metrics with advanced metrics for path-based counters"

This reverts commit 3dcd97ff77e9f9f5e3ea2b97b9e15c7c1066859d.
Alan Pearce alan@alanpearce.eu
Sat, 08 Jul 2023 09:27:52 +0200
commit

12ca100843a334c56f5b13d876ceab4ac561fa47

parent

fddfaa07b85d470d0ea00ceeb2892187ba038e75

2 files changed, 6 insertions(+), 7 deletions(-)

jump to
M CaddyfileCaddyfile
@@ -4,12 +4,15 @@ persist_config off 	auto_https disable_redirects
 	acme_ca https://acme.zerossl.com/v2/DV90
 	import globals/*
-	order advanced_metrics before file_server
-	order advanced_metrics before reverse_proxy
 	servers :80 {
+		metrics
 		protocols h1 h2c
 		trusted_proxies static private_ranges
 	}
+}
+
+:9091 {
+	metrics
 }
 
 http://,
@@ -35,9 +38,6 @@ redir /* https://alanpearce.eu/{uri} }
 
 http://alanpearce.eu {
-	advanced_metrics {
-		port 9091
-	}
 	root * {$SITE_ROOT}
 	file_server {
 		precompressed br zstd gzip
M DockerfileDockerfile
@@ -4,8 +4,7 @@ FROM docker.io/caddy:${VERSION}-builder-${VARIANT} AS builder
 
 RUN xcaddy build \
-    --with github.com/gamalan/caddy-tlsredis \
-    --with github.com/sebastianbrunnert/caddy-advanced-metrics
+    --with github.com/gamalan/caddy-tlsredis
 
 FROM docker.io/caddy:${VERSION}-${VARIANT}