From 37a835b44e308622f6862de494738dd2bfb58ef0 Mon Sep 17 00:00:00 2001 From: Andrew Pearson Date: Fri, 31 Jan 2025 18:02:34 -0600 Subject: [PATCH] fix(caddy): trusted_proxies for IPv6 enabled hosts (#189) --- reverse-proxy/Caddyfile.trust-proxy | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reverse-proxy/Caddyfile.trust-proxy b/reverse-proxy/Caddyfile.trust-proxy index cbb6259..3eb6e6a 100644 --- a/reverse-proxy/Caddyfile.trust-proxy +++ b/reverse-proxy/Caddyfile.trust-proxy @@ -1,11 +1,14 @@ :{$CADDY_PORT:80} { reverse_proxy /api/* http://localhost:{$BACKEND_PORT:8080} { trusted_proxies 0.0.0.0/0 + trusted_proxies ::/0 } reverse_proxy /.well-known/* http://localhost:{$BACKEND_PORT:8080} { trusted_proxies 0.0.0.0/0 + trusted_proxies ::/0 } reverse_proxy /* http://localhost:{$PORT:3000} { trusted_proxies 0.0.0.0/0 + trusted_proxies ::/0 } }