1
0
Fork 0

mediaserver: wip jellyfin

This commit is contained in:
Daniel Kempkens 2023-04-19 22:14:39 +02:00
parent 069239e1c0
commit e8294c4114
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM

View file

@ -9,21 +9,36 @@
}; };
services.nginx.virtualHosts."jellyfin.internal.kempkens.network" = { services.nginx.virtualHosts."jellyfin.internal.kempkens.network" = {
listen = [{ listen = [
addr = "0.0.0.0"; {
port = 9920; addr = "0.0.0.0";
ssl = true; port = 9920;
}]; ssl = true;
}
{
addr = "[::0]";
port = 9920;
ssl = true;
}
];
quic = true; quic = true;
http3 = true; http3 = true;
serverAliases = [ "jellyfin.home.kempkens.io" ];
onlySSL = true; onlySSL = true;
useACMEHost = "internal.kempkens.network"; useACMEHost = "internal.kempkens.network";
locations."/" = { locations."/" = {
recommendedProxySettings = true; recommendedProxySettings = true;
proxyPass = "http://127.0.0.1:8096"; proxyPass = "http://127.0.0.1:8096";
};
locations."/socket" = {
recommendedProxySettings = true;
proxyPass = "http://127.0.0.1:8096";
proxyWebsockets = true; proxyWebsockets = true;
}; };
}; };