47 lines
1 KiB
JSON
47 lines
1 KiB
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/centrifugal/centrifugo/master/internal/config/schema.json",
|
|
"client": {
|
|
"allowed_origins": ["*"]
|
|
},
|
|
"http_api": {
|
|
"enabled": true
|
|
},
|
|
"engine": {
|
|
"type": "redis",
|
|
"redis": {
|
|
"address": "redis://redis:6379"
|
|
}
|
|
},
|
|
"channel": {
|
|
"namespaces": [
|
|
{
|
|
"name": "conv",
|
|
"presence": true,
|
|
"join_leave": true,
|
|
"force_push_join_leave": true,
|
|
"history_size": 100,
|
|
"history_ttl": "300s",
|
|
"force_recovery": true,
|
|
"subscribe_proxy_enabled": true,
|
|
"subscribe_proxy_name": "backend"
|
|
},
|
|
{
|
|
"name": "user",
|
|
"presence": true,
|
|
"join_leave": true,
|
|
"history_size": 100,
|
|
"history_ttl": "300s",
|
|
"force_recovery": true,
|
|
"subscribe_proxy_enabled": true,
|
|
"subscribe_proxy_name": "backend"
|
|
}
|
|
]
|
|
},
|
|
"proxies": [
|
|
{
|
|
"name": "backend",
|
|
"endpoint": "http://backend:4000/centrifugo/subscribe",
|
|
"timeout": "3s"
|
|
}
|
|
]
|
|
}
|