fix ID for gaming serve
This commit is contained in:
parent
37875775d8
commit
bac3659348
|
@ -79,7 +79,22 @@ in {
|
||||||
"--baseurl=/Uploads/"
|
"--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";
|
id = "music-ro";
|
||||||
remote = "StorageBox:Music";
|
remote = "StorageBox:Music";
|
||||||
|
@ -110,22 +125,6 @@ in {
|
||||||
"--read-only"
|
"--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";
|
id = "restic-music";
|
||||||
remote = "StorageBox:Backups/Restic/Music";
|
remote = "StorageBox:Backups/Restic/Music";
|
||||||
|
|
Loading…
Reference in a new issue