118 lines
2.4 KiB
Nix
118 lines
2.4 KiB
Nix
{ lib, ... }:
|
|
|
|
{
|
|
services.jellyfin = {
|
|
enable = true;
|
|
user = "media_user";
|
|
group = "media_group";
|
|
openFirewall = false;
|
|
};
|
|
|
|
systemd.services.jellyfin =
|
|
let
|
|
mounts = [
|
|
"mnt-media-TV\\x20Shows.mount"
|
|
"mnt-media-Documentaries.mount"
|
|
"mnt-media-Anime.mount"
|
|
"mnt-media-Movies.mount"
|
|
"mnt-media-Deutsche\\x20Serien.mount"
|
|
"mnt-media-Deutsche\\x20Filme.mount"
|
|
];
|
|
in
|
|
{
|
|
requires = mounts;
|
|
after = lib.mkAfter mounts;
|
|
};
|
|
|
|
services.nginx.virtualHosts."jellyfin.internal.kempkens.network" = {
|
|
listen = [
|
|
{
|
|
addr = "0.0.0.0";
|
|
port = 9920;
|
|
ssl = true;
|
|
extraParameters = [
|
|
"fastopen=63"
|
|
"backlog=1023"
|
|
"deferred"
|
|
];
|
|
}
|
|
|
|
{
|
|
addr = "[::0]";
|
|
port = 9920;
|
|
ssl = true;
|
|
extraParameters = [
|
|
"fastopen=63"
|
|
"backlog=1023"
|
|
"deferred"
|
|
];
|
|
}
|
|
];
|
|
|
|
quic = true;
|
|
http3 = true;
|
|
|
|
onlySSL = true;
|
|
useACMEHost = "internal.kempkens.network";
|
|
|
|
locations."/" = {
|
|
recommendedProxySettings = true;
|
|
proxyPass = "http://127.0.0.1:8096";
|
|
};
|
|
|
|
locations."/socket" = {
|
|
recommendedProxySettings = true;
|
|
proxyPass = "http://127.0.0.1:8096";
|
|
proxyWebsockets = true;
|
|
};
|
|
};
|
|
|
|
services.nginx.virtualHosts."jellyfin.home.kempkens.io" = {
|
|
listen = [
|
|
{
|
|
addr = "0.0.0.0";
|
|
port = 9921;
|
|
ssl = true;
|
|
extraParameters = [
|
|
"proxy_protocol"
|
|
"fastopen=63"
|
|
"backlog=1023"
|
|
"deferred"
|
|
];
|
|
}
|
|
];
|
|
|
|
quic = false;
|
|
|
|
onlySSL = true;
|
|
useACMEHost = "internal.kempkens.network";
|
|
|
|
extraConfig = ''
|
|
set_real_ip_from 100.64.10.2/32;
|
|
set_real_ip_from fd7a:115c:a1e0:1010::2/128;
|
|
real_ip_header proxy_protocol;
|
|
'';
|
|
|
|
locations."/" = {
|
|
recommendedProxySettings = true;
|
|
proxyPass = "http://127.0.0.1:8096";
|
|
};
|
|
|
|
locations."/socket" = {
|
|
recommendedProxySettings = true;
|
|
proxyPass = "http://127.0.0.1:8096";
|
|
proxyWebsockets = true;
|
|
};
|
|
};
|
|
|
|
networking.firewall.interfaces =
|
|
let
|
|
ports = [ 9920 9921 ];
|
|
in
|
|
{
|
|
"ens3".allowedTCPPorts = ports;
|
|
"ens3".allowedUDPPorts = ports;
|
|
"tailscale0".allowedTCPPorts = ports;
|
|
"tailscale0".allowedUDPPorts = ports;
|
|
};
|
|
}
|