Replace master branch with local files
This commit is contained in:
commit
875a53f499
60 changed files with 21637 additions and 0 deletions
43
backend/config.json
Normal file
43
backend/config.json
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
"listeners": [
|
||||
{
|
||||
"address": "0.0.0.0",
|
||||
"port": 8080,
|
||||
"https": false
|
||||
}
|
||||
],
|
||||
"db_clients": [
|
||||
{
|
||||
"name": "default",
|
||||
"rdbms": "postgresql",
|
||||
"host": "postgres",
|
||||
"port": 5432,
|
||||
"dbname": "streaming",
|
||||
"user": "streamuser",
|
||||
"passwd": "streampass",
|
||||
"is_fast": false,
|
||||
"connection_number": 10
|
||||
}
|
||||
],
|
||||
"app": {
|
||||
"threads_num": 0,
|
||||
"enable_session": true,
|
||||
"session_timeout": 1200,
|
||||
"document_root": "",
|
||||
"upload_path": "./uploads",
|
||||
"client_max_body_size": "100M",
|
||||
"enable_brotli": true,
|
||||
"enable_gzip": true,
|
||||
"log_level": "DEBUG"
|
||||
},
|
||||
"redis": {
|
||||
"host": "redis",
|
||||
"port": 6379
|
||||
},
|
||||
"ome": {
|
||||
"api_url": "http://ovenmediaengine:8081",
|
||||
"api_token": "your-api-token"
|
||||
},
|
||||
"plugins": [],
|
||||
"custom_config": {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue