mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-13 19:56:38 +05:00
55 lines
1.2 KiB
JSON
55 lines
1.2 KiB
JSON
{
|
|
// Real-time Online/Offline Charging System (OCS) for Telecom & ISP environments
|
|
// Copyright (C) ITsysCOM GmbH
|
|
"general": {
|
|
"log_level": 7,
|
|
"node_id":"SlaveReplication",
|
|
},
|
|
|
|
"listen": {
|
|
"rpc_json": "127.0.0.1:22012", // RPC JSON listening address
|
|
"rpc_gob": "127.0.0.1:22013", // RPC GOB listening address
|
|
"http": "127.0.0.1:22080", // HTTP listening address
|
|
},
|
|
|
|
"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, // enable Rater service: <true|false>
|
|
},
|
|
|
|
"cdrs": {
|
|
"enabled": true, // start the CDR Server service: <true|false>
|
|
},
|
|
|
|
"scheduler": {
|
|
"enabled": true,
|
|
},
|
|
|
|
"attributes": {
|
|
"enabled": true,
|
|
},
|
|
|
|
|
|
"chargers": {
|
|
"enabled": true,
|
|
"attributes_conns": [
|
|
{"address": "*internal"}
|
|
],
|
|
},
|
|
|
|
"sessions": {
|
|
"enabled": true, // starts SessionManager service: <true|false>
|
|
"listen_bijson": "127.0.0.1:22014", // address where to listen for bidirectional JSON-RPC requests
|
|
"session_replication_conns": [
|
|
{"address": "127.0.0.1:2012", "transport": "*json"},
|
|
],
|
|
"rals_conns": [
|
|
{"address": "127.0.0.1:22012", "transport": "*json"},
|
|
],
|
|
},
|
|
|
|
}
|