setup octodns for automatic dns records

This commit is contained in:
Joakim Repomaa
2025-02-15 03:22:20 +02:00
parent 459cae639d
commit c15d518e4a
14 changed files with 351 additions and 92 deletions

View File

@@ -11,10 +11,12 @@ in
};
config = lib.mkIf cfg.enable {
services.owncast = {
openFirewall = true;
};
services = {
owncast = {
openFirewall = true;
};
services.webserver.vHosts.${fqdn}.locations."/".proxyPort = cfg.port;
webserver.vHosts.${fqdn}.locations."/".proxyPort = cfg.port;
};
};
}