add jellfyin service

This commit is contained in:
Yan Lin 2025-12-08 23:08:32 +01:00
parent 4e0ef07635
commit 4e4a03ad26
2 changed files with 22 additions and 1 deletions

View file

@ -243,7 +243,7 @@
user = "yanlin";
sonarr.enable = true;
radarr.enable = true;
jellyfin.enable = false;
jellyfin.enable = true;
deluge.enable = true;
plex.enable = true;
};

View file

@ -66,6 +66,18 @@
};
};
# Jellyfin Media Server
jellyfin = {
rule = "Host(`jellyfin.yanlincs.com`)";
service = "jellyfin";
tls = {
certResolver = "cloudflare";
domains = [{
main = "*.yanlincs.com";
}];
};
};
};
services = {
@ -115,6 +127,15 @@
};
};
# Jellyfin backend
jellyfin = {
loadBalancer = {
servers = [{
url = "http://lan.hs.yanlincs.com:8096";
}];
};
};
};
};