- updates - snapserver - graphana dashboards - loki - ddclient - arr suite, jellyseer - mautrix fixes
14 lines
305 B
Nix
14 lines
305 B
Nix
{
|
|
services.jellyfin = {
|
|
enable = true;
|
|
group = "media"; # access to user stuff
|
|
};
|
|
services.nginx.virtualHosts."movies.tristans.cloud" = {
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
locations."/" = {
|
|
proxyPass = "http://localhost:8096";
|
|
proxyWebsockets = true;
|
|
};
|
|
};
|
|
}
|