From b19b3f61f77e15719c926b85b54d623eafcad9ea Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Tue, 8 Apr 2025 16:19:31 -0400 Subject: [PATCH] fix: Fixes reverse proxy to work with insecure https in reverse proxy to management console. --- config/Caddyfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/Caddyfile b/config/Caddyfile index ae09c1f..49c9da7 100644 --- a/config/Caddyfile +++ b/config/Caddyfile @@ -8,7 +8,9 @@ @console host console.roguemini.housh.dev handle @console { reverse_proxy https://192.168.50.4:9090 { - tls_insecure_skip_verify + transport http { + tls_insecure_skip_verify + } } }