diff --git a/hosts/hetzner-arm/containers/storage/profiles/rcloneServe.nix b/hosts/hetzner-arm/containers/storage/profiles/rcloneServe.nix index 73b3975..a7d5597 100644 --- a/hosts/hetzner-arm/containers/storage/profiles/rcloneServe.nix +++ b/hosts/hetzner-arm/containers/storage/profiles/rcloneServe.nix @@ -79,7 +79,22 @@ in { "--baseurl=/Uploads/" ]; } - + { + # This isn't really being directly used anymore but its nice as a backup + # Jellyfin directly mounts from StorageBox instead + id = "gaming"; + remote = "Gaming:"; + type = "webdav"; + extraArgs = [ + "--addr=0.0.0.0:${toString ports.webdav_gaming}" + "--htpasswd=${secrets.webdav_gaming_htpasswd.path}" + "--baseurl=/Gaming/" + "--cache-dir=/caches/gaming_webdav_serve" + "--vfs-cache-max-age=5m" + "--vfs-cache-max-size=1g" + "--vfs-cache-mode=full" + ]; + } { id = "music-ro"; remote = "StorageBox:Music"; @@ -110,22 +125,6 @@ in { "--read-only" ]; } - { - # This isn't really being directly used anymore but its nice as a backup - # Jellyfin directly mounts from StorageBox instead - id = "media-combine"; - remote = "Gaming:"; - type = "webdav"; - extraArgs = [ - "--addr=0.0.0.0:${toString ports.webdav_gaming}" - "--htpasswd=${secrets.webdav_gaming_htpasswd.path}" - "--baseurl=/Gaming/" - "--cache-dir=/caches/gaming_webdav_serve" - "--vfs-cache-max-age=5m" - "--vfs-cache-max-size=1g" - "--vfs-cache-mode=full" - ]; - } { id = "restic-music"; remote = "StorageBox:Backups/Restic/Music";