Files
nixos/freun.dev/owncast.nix
2024-11-04 12:43:09 +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
'';
};
}