mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-19 22:28:45 +05:00
28 lines
787 B
JSON
28 lines
787 B
JSON
{
|
|
"listen": {
|
|
"rpc_json": "127.0.0.1:2018", // RPC JSON listening address
|
|
"rpc_gob": "127.0.0.1:2019", // RPC GOB listening address
|
|
"http": "127.0.0.1:2083", // HTTP listening address
|
|
},
|
|
|
|
"cdrs": {
|
|
"enabled": true, // start the CDR Server service: <true|false>
|
|
"rater_conns": [
|
|
{"server": "127.0.0.1:2014"},
|
|
{"server": "127.0.0.1:2016"}
|
|
],
|
|
"cdrstats": "", // address where to reach the cdrstats service, empty to disable stats functionality<""|internal|x.y.z.y:1234>
|
|
},
|
|
|
|
"sm_generic": {
|
|
"enabled": true,
|
|
"rater_conns": [
|
|
{"server": "127.0.0.1:2014"},
|
|
{"server": "127.0.0.1:2016"}
|
|
],
|
|
"cdrs_conns": [
|
|
{"server": "internal"} // address where to reach CDR Server, empty to disable CDR capturing <internal|x.y.z.y:1234>
|
|
],
|
|
},
|
|
}
|