From 85cba202d4a8c9ee65c7f66ece25c2cf8c7efc38 Mon Sep 17 00:00:00 2001 From: hubaceks Date: Sat, 2 May 2026 22:11:07 +0200 Subject: [PATCH] fix of internal --- templates/proxy.caddy.j2 | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/templates/proxy.caddy.j2 b/templates/proxy.caddy.j2 index 434dc23..1afd569 100644 --- a/templates/proxy.caddy.j2 +++ b/templates/proxy.caddy.j2 @@ -8,9 +8,8 @@ {% if internal %} @internal { - remote_ip{% for item in internal_ranges %} {{ item }}{% endfor %} + remote_ip {{ internal_ranges | join(' ') }} } - handle @internal { {% if reverse_proxy_block %} reverse_proxy {{ backend }} { @@ -28,7 +27,6 @@ reverse_proxy {{ backend }} {% endif %} } - handle { respond "Forbidden" 403 }