mirror of
https://git.waldn.net/git/knotteye/satyr.git
synced 2025-04-21 03:07:10 +00:00
Add configurability to cluster option
This commit is contained in:
parent
80cf01ef30
commit
5126bccbc7
@ -9,6 +9,9 @@ media:
|
||||
ffmpeg: '<ffmpeg>'
|
||||
|
||||
rtmp:
|
||||
# enable cluster mode this will pretty much entirely
|
||||
# break the ability to play rtmp for clients
|
||||
cluster: false
|
||||
port: 1935
|
||||
|
||||
http:
|
||||
|
@ -4,12 +4,13 @@ import {init as initHTTP} from "./http";
|
||||
import {init as clean} from "./cleanup";
|
||||
import {init as initChat} from "./chat";
|
||||
import { config } from "./config";
|
||||
import { execFile } from "child_process";
|
||||
|
||||
async function run() {
|
||||
await initDB();
|
||||
await clean();
|
||||
await initHTTP();
|
||||
await initRTMP();
|
||||
config['rtmp']['cluster'] ? execFile(process.cwd()+'/node_modules/.bin/ts-node' [process.cwd()+'src/cluster.ts']) : await initRTMP();
|
||||
await initChat();
|
||||
console.log(`Satyr v${config['satyr']['version']} ready`);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user