Files
nixos/hosts/freun.dev/owncast.nix
2025-02-02 20:26:12 +02:00

17 lines
236 B
Nix

{ ... }:
let
fqdn = "stream.freun.dev";
in
{
services.owncast = {
enable = true;
openFirewall = true;
};
services.caddy.virtualHosts = {
"${fqdn}".extraConfig = ''
reverse_proxy localhost:8080
'';
};
}