From ccbce57ab9e39472053c7a97eff8cd04a9dee400 Mon Sep 17 00:00:00 2001 From: ginnoir Date: Wed, 5 Aug 2026 13:17:48 -0500 Subject: [PATCH] feat(caddy): add jellyfin, wizarr and jellystat sites MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit jellyfin and wizarr are public by design — they replace Plex's own remote access. jellystat is internal_gate + forward_auth, matching the tautulli pattern. --- Caddyfile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/Caddyfile b/Caddyfile index fb3abcc..781e87e 100644 --- a/Caddyfile +++ b/Caddyfile @@ -133,6 +133,17 @@ requests.ginnoir.com { reverse_proxy seerr:5055 } +# ============================================================= +# STREAMING — public (replaces Plex's own remote access) +# ============================================================= +jellyfin.ginnoir.com { + reverse_proxy jellyfin:8096 +} + +wizarr.ginnoir.com { + reverse_proxy wizarr:5690 +} + # ============================================================= # MEDIA MANAGEMENT — internal only # ============================================================= @@ -204,6 +215,17 @@ tautulli.ginnoir.com { } } +jellystat.ginnoir.com { + route { + import internal_gate + import authentik_outpost + handle { + import authentik_forward_auth + reverse_proxy jellystat:3000 + } + } +} + # ============================================================= # DOWNLOAD CLIENTS — internal only # =============================================================