From 687ef0c167ed445bd867adbdc766aabda1527958 Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Sun, 3 May 2026 00:39:19 -0400 Subject: [PATCH] moved acme_challenge backend --- systems/jeeves/web_services/haproxy.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/jeeves/web_services/haproxy.cfg b/systems/jeeves/web_services/haproxy.cfg index 899ef71..d2eaaf9 100644 --- a/systems/jeeves/web_services/haproxy.cfg +++ b/systems/jeeves/web_services/haproxy.cfg @@ -28,7 +28,6 @@ frontend ContentSwitching # ACME challenge routing (must be first) acl is_acme path_beg /.well-known/acme-challenge/ - use_backend acme_challenge if is_acme # tmmworkshop.com acl host_audiobookshelf hdr(host) -i audiobookshelf.tmmworkshop.com @@ -45,6 +44,7 @@ frontend ContentSwitching # Redirect all HTTP to HTTPS unless on the allow list or ACME challenge http-request redirect scheme https code 301 if !{ ssl_fc } !allow_http !is_acme + use_backend acme_challenge if is_acme use_backend audiobookshelf_nodes if host_audiobookshelf use_backend cache_nodes if host_cache use_backend jellyfin if host_jellyfin