mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-12 02:26:26 +05:00
28 lines
659 B
JSON
28 lines
659 B
JSON
{
|
|
"listen": {
|
|
"rpc_json": "127.0.0.1:2020", // RPC JSON listening address
|
|
"rpc_gob": "127.0.0.1:2021", // RPC GOB listening address
|
|
"http": "127.0.0.1:2084", // HTTP listening address
|
|
},
|
|
|
|
"cdrs": {
|
|
"enabled": true, // start the CDR Server service: <true|false>
|
|
"rals_conns": [
|
|
{"address": "127.0.0.1:2014"},
|
|
{"address": "127.0.0.1:2016"}
|
|
],
|
|
},
|
|
|
|
"sessions": {
|
|
"enabled": true,
|
|
"rals_conns": [
|
|
{"address": "127.0.0.1:2014"},
|
|
{"address": "127.0.0.1:2016"}
|
|
],
|
|
"cdrs_conns": [
|
|
{"address": "*internal"} // address where to reach CDR Server, empty to disable CDR capturing <internal|x.y.z.y:1234>
|
|
],
|
|
},
|
|
|
|
}
|