mirror of
https://github.com/steelbrain/ffmpeg-over-ip.git
synced 2024-10-12 01:34:56 +03:00
🆕 Setup config loading
This commit is contained in:
@@ -3,12 +3,19 @@
|
||||
|
||||
"log": "stdout", // type: "stdout" | "stderr" | any string (file path) | false
|
||||
// Other possibilities:
|
||||
"log": "$TMP/ffmpeg-over-ip.server.log",
|
||||
// ^ $TMP is a special variable here, only supported in "log" config where it uses the operating system
|
||||
"log": "$TMPDIR/ffmpeg-over-ip.server.log",
|
||||
// ^ $TMPDIR is a special variable here, only supported in "log" config where it uses the operating system
|
||||
// temp folder
|
||||
"log": false,
|
||||
// ^ This turns off logging completely
|
||||
"log": "stdout",
|
||||
"log": "stderr",
|
||||
"log": "/var/log/messages.log"
|
||||
"log": "/var/log/messages.log",
|
||||
|
||||
"listenAddress": "0.0.0.0", // type: string
|
||||
// You can specify a specific address to listen to, by default, listens on all addresses
|
||||
"listenPort": 5050, // type: number
|
||||
|
||||
"authSecret": "YOUR-CLIENT-PASSWORD-HERE" // type: string
|
||||
// ^ Ideally keep this within reason (It'll be received in an HTTP header) but definitely not less than 15 characters
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user