From d7b6d097e9a3057521f3ffda629fe254a12203a7 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Sat, 15 Nov 2025 01:39:43 +0100 Subject: [PATCH] Services/Sabnzbd: Add incomplete downloads directories --- system/services/bazarr.nix | 2 +- system/services/sabnzbd.nix | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/system/services/bazarr.nix b/system/services/bazarr.nix index ef49b310..4796d21a 100644 --- a/system/services/bazarr.nix +++ b/system/services/bazarr.nix @@ -23,7 +23,7 @@ in { dependsOn = []; ports = [ - # "6767:6766" + # "6767:6767" ]; volumes = [ diff --git a/system/services/sabnzbd.nix b/system/services/sabnzbd.nix index 6123d569..bbb7b294 100644 --- a/system/services/sabnzbd.nix +++ b/system/services/sabnzbd.nix @@ -23,11 +23,17 @@ in { dependsOn = []; ports = [ + # NOTE: On initial start, the gui won't be reachable via reverse proxy, + # because the hostname has to be whitelisted. + # Edit the "sabnzbd.ini" in the docker volume and add the reverse-proxy address + # to the host_whitelist variable. # "8080:8080" ]; volumes = [ + "/media/Movie/.sabnzbd:/media/movies/incomplete" "/media/Movie/0-MakeMKV:/media/movies" + "/media/Show/.sabnzbd:/media/shows/incomplete" "/media/Show/0-MakeMKV:/media/shows" "sabnzbd_config:/config"