{
"client": {
"token": {
"hmac_secret_key": "YOUR_DATA"
},
"allowed_origins": [
"http://localhost",
]
},
"channel": {
"namespaces": [
{
"name": "public",
"allow_subscribe_for_client": true
},
{
"name": "dm",
"allow_user_limited_channels": true
},
{
"name": "personal",
"allow_user_limited_channels": true
}
]
},
"admin": {
"enabled": true,
"password": "YOUR_DATA",
"secret": "YOUR_DATA"
},
"http_api": {
"key": "YOUR_DATA"
}
}
upstream centrifugo {
# uncomment ip_hash if using SockJS transport with many upstream servers.
#ip_hash;
server 127.0.0.1:8000;
}
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
# ... your web site Nginx config
location /connection/websocket {
proxy_pass http://centrifugo;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
}
}