mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
65 lines
1.0 KiB
JSON
65 lines
1.0 KiB
JSON
{
|
|
// Real-time Online/Offline Charging System (OCS) for Telecom & ISP environments
|
|
// Copyright (C) ITsysCOM GmbH
|
|
"general": {
|
|
"log_level": 7,
|
|
"node_id":"BackupReplication",
|
|
},
|
|
|
|
"listen": {
|
|
"rpc_json": "127.0.0.1:2012",
|
|
"rpc_gob": "127.0.0.1:2013",
|
|
"http": "127.0.0.1:2080",
|
|
},
|
|
|
|
|
|
"rpc_conns": {
|
|
"rplConn": {
|
|
"strategy": "*broadcast_sync",
|
|
"conns": [{"address": "127.0.0.1:22013", "transport": "*gob"}],
|
|
},
|
|
},
|
|
|
|
|
|
"stor_db": { // database used to store offline tariff plans and CDRs
|
|
"db_password": "CGRateS.org", // password to use when connecting to stordb
|
|
},
|
|
|
|
"rals": {
|
|
"enabled": true,
|
|
},
|
|
|
|
"schedulers": {
|
|
"enabled": true,
|
|
},
|
|
|
|
"cdrs": {
|
|
"enabled": true,
|
|
},
|
|
|
|
"attributes": {
|
|
"enabled": true,
|
|
},
|
|
|
|
|
|
"chargers": {
|
|
"enabled": true,
|
|
"attributes_conns": ["*internal"],
|
|
},
|
|
|
|
"sessions": {
|
|
"enabled": true,
|
|
"replication_conns": ["rplConn"],
|
|
"rals_conns": ["*internal"],
|
|
"cdrs_conns": ["*internal"],
|
|
"chargers_conns": ["*internal"],
|
|
"backup_interval": "500ms",
|
|
},
|
|
|
|
"apiers": {
|
|
"enabled": true,
|
|
"scheduler_conns": ["*internal"],
|
|
},
|
|
|
|
}
|