beeta/backend/config.json

43 lines
1,002 B
JSON
Raw Normal View History

2025-08-03 21:53:15 -04:00
{
"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": {}
}