Messenger/infra/centrifugo/config.json
Заид Омар Медхат | Zaid Omar Medhat 62f20f8843 init
2026-07-10 13:31:12 +05:00

46 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": "room",
"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,
"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"
}
]
}