blob: a7b9557f568223f680e0e0f1d84d37c5b4ca1cd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{ ... }:
let
directory = "/opt/jellyfin";
in
{
systemd.tmpfiles.rules = builtins.map (x: "d ${x} 0755 share share - -") [ directory ];
virtualisation.oci-containers.containers.jellyfin = {
image = "jellyfin/jellyfin:latest";
autoStart = true;
user = "994:994";
ports = [ "8096:8096/tcp" ];
volumes = [
"${directory}/config:/config"
"${directory}/cache:/cache"
"/tank/media:/media"
];
};
services.caddy.virtualHosts."buttered.brownbread.net".extraConfig = ''
encode zstd gzip
reverse_proxy http://localhost:8096
'';
}
|