{ "$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" } ] }