From 614c907d8a866d89a42223bc76e1f5156f2a0bb3 Mon Sep 17 00:00:00 2001 From: teutat3s Date: Sun, 29 Oct 2023 03:35:35 +0100 Subject: [PATCH] feat: owncast initial commit https://owncast.online/ --- hosts/nachtigall/apps/owncast.nix | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 hosts/nachtigall/apps/owncast.nix diff --git a/hosts/nachtigall/apps/owncast.nix b/hosts/nachtigall/apps/owncast.nix new file mode 100644 index 0000000..a79438e --- /dev/null +++ b/hosts/nachtigall/apps/owncast.nix @@ -0,0 +1,30 @@ +{ + flake, + config, + lib, + pkgs, + ... +}: { + services.nginx.virtualHosts."stream.pub.solar" = { + enableACME = true; + forceSSL = true; + locations."/".proxyPass = "http://127.0.0.1:5000"; + }; + + # Owncast + services.owncast = { + enable = true; + user = "owncast"; + group = "owncast"; + # The directory where owncast stores its data files. + dataDir = "/var/lib/owncast"; + # Open the appropriate ports in the firewall for owncast. + openFirewall = true; + # The IP address to bind the owncast web server to. + listen = "127.0.0.1"; + # TCP port where owncast rtmp service listens. + rtmp-port = 1935; + # TCP port where owncast web-gui listens. + port = 5000; + }; +}