feat(eientei): add jellyfin
This commit is contained in:
parent
37c19421d9
commit
09a74fce37
33
spec/eientei/jellyfin.nix
Normal file
33
spec/eientei/jellyfin.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ pkgs
|
||||
, config
|
||||
, ...}: {
|
||||
services.jellyfin = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
dataDir = "/nix/persist/service/jellyfin";
|
||||
};
|
||||
|
||||
users.users.jellyfin.uid = 282;
|
||||
users.groups.jellyfin.gid = 282;
|
||||
|
||||
services.nginx.virtualHosts."jellyfin.514fpv.io" = {
|
||||
useACMEHost = ".514fpv.io";
|
||||
addSSL = true;
|
||||
locations = {
|
||||
"= /".return = "302 https://jellyfin.514fpv.io:2096/web/";
|
||||
"/" = {
|
||||
proxyPass = "http://127.0.0.1:8096";
|
||||
extraConfig = ''
|
||||
proxy_buffering off;
|
||||
'';
|
||||
};
|
||||
"= /web/".proxyPass = "http://127.0.0.1:8096/web/index.html";
|
||||
"/socket" = {
|
||||
proxyPass = "http://127.0.0.1:8096";
|
||||
proxyWebsockets = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
global.fs.zfs.mountpoints."/nix/persist/service/jellyfin" = "service/jellyfin";
|
||||
}
|
Loading…
Reference in a new issue