10 lines
266 B
Nix
10 lines
266 B
Nix
|
{config, ...}: {
|
||
|
imports = [./caddy.nix];
|
||
|
services.owncast = {
|
||
|
enable = true;
|
||
|
port = 9090;
|
||
|
openFirewall = true;
|
||
|
};
|
||
|
services.caddy.virtualHosts."stream.xenia.me.uk".extraConfig = "reverse_proxy http://localhost:${config.services.owncast.port}";
|
||
|
}
|