This commit is contained in:
Lucy Hochkamp 2024-12-16 00:01:53 +01:00
parent 6198165886
commit 8b72e73fb0
No known key found for this signature in database
10 changed files with 202 additions and 90 deletions

View file

@ -173,6 +173,16 @@ in
"nodered-data:/data"
];
};
virtualisation.oci-containers.containers.jellyfin = {
image = "jellyfin/jellyfin:latest";
user = "1000:100";
extraOptions = [ "--network=podman" "--mount" "type=bind,source=/data/media,destination=/media,ro=true,relabel=private"];
volumes = [
"jellyfin-config:/config"
"jellyfin-cache:/cache"
];
};
}

View file

@ -198,6 +198,14 @@ in
handle @bzzt {
reverse_proxy http://127.0.0.1:5002
}
@jellyfin host j.hailsatan.eu
handle @jellyfin {
reverse_proxy http://jellyfin:8096 {
transport http {
resolvers 10.88.0.1 # podman dns
}
}
}
handle {
abort
}