feat(servers): add first config for jellyfin
All checks were successful
Discord / discord commits (push) Successful in 45s
All checks were successful
Discord / discord commits (push) Successful in 45s
This commit is contained in:
parent
f277c78ac1
commit
25ab7c3b2d
6 changed files with 177 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
|||
{...}: {
|
||||
imports = [
|
||||
./modules/arion
|
||||
./modules/jellyfin
|
||||
./modules/mergerfs.nix
|
||||
./modules/qbittorrent
|
||||
];
|
||||
|
|
33
devices/nos/modules/jellyfin/default.nix
Normal file
33
devices/nos/modules/jellyfin/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
inherit (lib) hasAttr fileContents optionals;
|
||||
inherit (config.vars) mainUser;
|
||||
|
||||
optionalGroup = name:
|
||||
optionals
|
||||
(hasAttr name config.users.groups)
|
||||
[config.users.groups.${name}.name];
|
||||
in {
|
||||
imports = [
|
||||
./jfa-go.nix
|
||||
./packages.nix
|
||||
];
|
||||
|
||||
users.users."jellyfin".extraGroups =
|
||||
optionalGroup mainUser
|
||||
++ optionalGroup "input"
|
||||
++ optionalGroup "media"
|
||||
++ optionalGroup "render";
|
||||
|
||||
services = {
|
||||
jellyfin.enable = true;
|
||||
|
||||
nginx = {
|
||||
enable = true;
|
||||
config = fileContents ./nginx.conf;
|
||||
};
|
||||
};
|
||||
}
|
8
devices/nos/modules/jellyfin/images/jfa-go.nix
Normal file
8
devices/nos/modules/jellyfin/images/jfa-go.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
pkgs:
|
||||
pkgs.dockerTools.pullImage {
|
||||
imageName = "hrfee/jfa-go";
|
||||
imageDigest = "sha256:e50d74379d91f9389afcd7db6bc4542ad2b1869f4af69c7f9fb5f9c02e7957da";
|
||||
sha256 = "02v0p4yrp4gjm88mqvdasaslfl51r194m6fj08bmq16bm6zz1n9l";
|
||||
finalImageName = "hrfee/jfa-go";
|
||||
finalImageTag = "unstable";
|
||||
}
|
15
devices/nos/modules/jellyfin/jfa-go.nix
Normal file
15
devices/nos/modules/jellyfin/jfa-go.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{...}: {
|
||||
systemd.services."arion-jfa-go".after = ["jellyfin.service"];
|
||||
|
||||
arion.projects."jfa-go"."jfa-go" = {
|
||||
image = ./images/jfa-go.nix;
|
||||
restart = "always";
|
||||
|
||||
ports = ["8056:8056"];
|
||||
|
||||
volumes = [
|
||||
"/var/lib/jellyfin/jfa-go:/data"
|
||||
"/etc/localtime:/etc/localtime:ro"
|
||||
];
|
||||
};
|
||||
}
|
96
devices/nos/modules/jellyfin/nginx.conf
Normal file
96
devices/nos/modules/jellyfin/nginx.conf
Normal file
|
@ -0,0 +1,96 @@
|
|||
events {
|
||||
worker_connections 1024;
|
||||
}
|
||||
|
||||
http {
|
||||
# Must be in HTTP block
|
||||
# Set in-memory cache-metadata size in keys_zone, size of video caching and how many days a cached object should persist
|
||||
proxy_cache_path /var/cache/nginx/jellyfin-videos levels=1:2 keys_zone=jellyfin-videos:100m inactive=90d max_size=35000m;
|
||||
map $request_uri $h264Level {
|
||||
~(h264-level=)(.+?)& $2;
|
||||
}
|
||||
map $request_uri $h264Profile {
|
||||
~(h264-profile=)(.+?)& $2;
|
||||
}
|
||||
|
||||
server {
|
||||
listen 8097;
|
||||
listen [::]:8097;
|
||||
server_name jelly.nelim.org;
|
||||
|
||||
## The default `client_max_body_size` is 1M, this might not be enough for some posters, etc.
|
||||
client_max_body_size 20M;
|
||||
|
||||
# use a variable to store the upstream proxy
|
||||
set $jellyfin 10.0.0.249;
|
||||
|
||||
location = / {
|
||||
return 302 https://$host/web/;
|
||||
}
|
||||
|
||||
location / {
|
||||
# Proxy main Jellyfin traffic
|
||||
proxy_pass http://$jellyfin:8096;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_set_header X-Forwarded-Protocol $scheme;
|
||||
proxy_set_header X-Forwarded-Host $http_host;
|
||||
|
||||
# Disable buffering when the nginx proxy gets very resource heavy upon streaming
|
||||
proxy_buffering off;
|
||||
}
|
||||
|
||||
# location block for /web - This is purely for aesthetics so /web/#!/ works instead of having to go to /web/index.html/#!/
|
||||
location = /web/ {
|
||||
# Proxy main Jellyfin traffic
|
||||
proxy_pass http://$jellyfin:8096/web/index.html;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_set_header X-Forwarded-Protocol $scheme;
|
||||
proxy_set_header X-Forwarded-Host $http_host;
|
||||
}
|
||||
|
||||
location /socket {
|
||||
# Proxy Jellyfin Websockets traffic
|
||||
proxy_pass http://$jellyfin:8096;
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "upgrade";
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_set_header X-Forwarded-Protocol $scheme;
|
||||
proxy_set_header X-Forwarded-Host $http_host;
|
||||
}
|
||||
|
||||
location /accounts {
|
||||
# No longer necessary on versions after v0.3.0
|
||||
# rewrite ^/accounts/(.*) /$1 break;
|
||||
|
||||
# Remove the CSP header set for Jellyfin
|
||||
proxy_hide_header Content-Security-Policy;
|
||||
add_header Content-Security-Policy "";
|
||||
|
||||
proxy_pass http://localhost:8056/accounts; # Change as you need
|
||||
|
||||
# For versions <= v0.3.0
|
||||
#proxy_pass http://localhost:8056; # Change as you need
|
||||
|
||||
http2_push_preload on;
|
||||
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_set_header X-Forwarded-Protocol $scheme;
|
||||
proxy_set_header X-Forwarded-Host $http_host;
|
||||
proxy_buffering off;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
24
devices/nos/modules/jellyfin/packages.nix
Normal file
24
devices/nos/modules/jellyfin/packages.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
inherit (lib) hasAttr optionals;
|
||||
in {
|
||||
environment.systemPackages = [
|
||||
pkgs.jellyfin
|
||||
pkgs.jellyfin-ffmpeg
|
||||
|
||||
(pkgs.jellyfin-web.overrideAttrs (_: o: {
|
||||
patches =
|
||||
[
|
||||
(pkgs.fetchpatch {
|
||||
name = "skipintro.patch";
|
||||
url = "https://pastebin.com/raw/EEgvReaw";
|
||||
hash = "sha256-kfvOz0ukDY09kkbmZi24ch5KWJsVcThNEVnjlk4sAC0=";
|
||||
})
|
||||
]
|
||||
++ optionals (hasAttr "patches" o) o.patches;
|
||||
}))
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue