observer added, database added to improve fault tolerance, config fixed, ping added, port allocation improved, session observer added, multiple checks added, run process improved, process running check added, fault tolerance improved
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
module.exports = {
|
||||
port: parseInt(process.env.PORT),
|
||||
external_url: process.env.EXTERNAL_URL,
|
||||
coordinator_url: process.env.COORDINATOR_URL,
|
||||
database_url: process.env.DATABASE_URL,
|
||||
database_name: process.env.DATABASE_NAME,
|
||||
webrtc_port_begin: parseInt(process.env.WEBRTC_PORT_BEGIN),
|
||||
session_limit: 100,
|
||||
log_path: "./logs/runtime.log",
|
||||
webrtc_server_path: "C:/Users/c/Documents/Projects/pixel-streaming-webrtc/WebServers/SignallingWebServer/cirrus.js",
|
||||
app_args: {
|
||||
runtime: {
|
||||
port: "-PixelStreamingPort="
|
||||
},
|
||||
static: [
|
||||
"-PixelStreamingIP=127.0.0.1",
|
||||
"-RenderOffScreen",
|
||||
"-PixelStreamingEncoderMaxBitrate=15000000",
|
||||
"-ResX 1920 -ResY 1080",
|
||||
"-PixelStreamingEncoderMinQP=25",
|
||||
"-PixelStreamingEncoderMultipass=QUARTER",
|
||||
"-PixelStreamingWebRTCMaxFps=60"
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user