Merge pull request 'flora-6: init owncast' (#225) from infra-init-owncast into infra
All checks were successful
continuous-integration/drone/push Build is passing

Reviewed-on: #225
Reviewed-by: hensoko <hensoko@gssws.de>
This commit is contained in:
teutat3s 2023-05-14 15:14:15 +02:00
commit a63d3390e1
Signed by: pub.solar gitea
GPG key ID: F0332B04B7054873
3 changed files with 33 additions and 0 deletions

View file

@ -107,6 +107,14 @@
reverse_proxy :4000
'';
};
"stream.pub.solar" = {
logFormat = lib.mkForce ''
output discard
'';
extraConfig = ''
reverse_proxy :5000
'';
};
"list.pub.solar" = {
logFormat = lib.mkForce ''
output discard

View file

@ -20,6 +20,7 @@ in {
./keycloak.nix
./gitea.nix
./mailman.nix
./owncast.nix
profiles.base-user
profiles.users.root # make sure to configure ssh keys

24
hosts/flora-6/owncast.nix Normal file
View file

@ -0,0 +1,24 @@
{
config,
lib,
pkgs,
self,
...
}: {
# 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;
};
}