caddy: init

This commit is contained in:
Nico 2025-05-03 16:16:03 +10:00
parent 2dd3ade483
commit 25f02ec9ee
6 changed files with 118 additions and 25 deletions

View file

@ -1,10 +1,17 @@
{ ... }:
{ config, ... }:
{
# Streaming frontend
services.jellyfin = {
enable = true;
openFirewall = true;
openFirewall = false;
group = "media";
};
services.caddy.virtualHosts."watch.${config.homelab.domain}" = {
# useACMEHost = config.homelab.domain;
extraConfig = ''
reverse_proxy http://localhost:8096
'';
};
}