Install and enable jellyfin on queen

This commit is contained in:
Lillian-Violet 2024-01-01 23:23:53 +01:00
parent 7188c66857
commit 2d95d1f922
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
services.nginx = {
virtualHosts = {
"video.gladtherescake.eu" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://localhost:8096";
};
};
};
};
services.jellyfin = {
enable = true;
};
}