13 lines
164 B
Nix
13 lines
164 B
Nix
|
{ outputs, ... }: {
|
||
|
imports = [
|
||
|
./nginx
|
||
|
];
|
||
|
|
||
|
services.owncast = {
|
||
|
enable = true;
|
||
|
port = 8060;
|
||
|
rtmp-port = 1945;
|
||
|
listen = "0.0.0.0";
|
||
|
};
|
||
|
}
|