mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-05-13 07:41:08 +02:00
12 lines
200 B
Nix
12 lines
200 B
Nix
{ ... }:
|
|
let
|
|
domain = "cinema.vpn.rfive.de";
|
|
in
|
|
{
|
|
services.jellyfin = {
|
|
enable = true;
|
|
};
|
|
services.caddy.virtualHosts."${domain}".extraConfig = ''
|
|
reverse_proxy 127.0.0.1:8096
|
|
'';
|
|
}
|