nix-config/hosts/nixedo/modules/jellyfin.nix
Oliver Davies bbbda37bfc
All checks were successful
/ check (push) Successful in 10m5s
Remove configDir for Jellyfin
Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
2025-11-01 12:56:04 +00:00

22 lines
399 B
Nix

{
services.jellyfin = {
enable = true;
group = "media";
openFirewall = true;
};
services.nginx.virtualHosts."jellyfin.oliverdavies.uk" = {
forceSSL = true;
useACMEHost = "oliverdavies.uk";
locations."/" = {
proxyPass = "http://localhost:8096";
recommendedProxySettings = true;
extraConfig = ''
proxy_buffering off;
'';
};
};
}