From 767e64c072357fa72eb88bdfa294a6bd6c2df494 Mon Sep 17 00:00:00 2001 From: Gmer4Lfe Date: Sat, 23 May 2026 13:40:55 -0400 Subject: [PATCH] Add Jellyfin to HOST2 transcode servers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Mirrors HOST1 change — adds HOST2_JELLYFIN vars and registers the container in HOST2_TRANSCODE_SERVERS. --- Configurations/host2.conf | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Configurations/host2.conf b/Configurations/host2.conf index f775a97..eff91aa 100644 --- a/Configurations/host2.conf +++ b/Configurations/host2.conf @@ -89,6 +89,12 @@ HOST2_EMBY_URL="http://localhost:8096" HOST2_EMBY_API_KEY="your-host2-emby-api-key" +# ━━━ Jellyfin ━━━ +# API key: Jellyfin Dashboard → Administration → API Keys → + New Key + HOST2_JELLYFIN_CONTAINER="Jellyfin" + HOST2_JELLYFIN_URL="http://localhost:8095" + HOST2_JELLYFIN_API_KEY="956d0168987f4e4680626653abb080f0" + # ━━━ Notifications ━━━ # Discord webhook — leave blank to disable. # Per-host so HOST1 and HOST2 can post to different channels or only one server notifies. @@ -477,6 +483,7 @@ # ⚠️ Tdarr does NOT belong here — keep Tdarr on SSD, not ramdisk. HOST2_TRANSCODE_SERVERS=( "${HOST2_EMBY_CONTAINER}|${HOST2_EMBY_URL}|${HOST2_EMBY_API_KEY}|emby" + "${HOST2_JELLYFIN_CONTAINER}|${HOST2_JELLYFIN_URL}|${HOST2_JELLYFIN_API_KEY}|jellyfin" ) # ==============================================================================================