flora-6: init owncast
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
teutat3s 2023-05-13 16:50:58 +02:00
parent ad5e0e74d5
commit dd62bf1752
Signed by: teutat3s
GPG key ID: 4FA1D3FA524F22C1
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;
};
}