mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-12 18:46:24 +05:00
41 lines
693 B
JSON
41 lines
693 B
JSON
{
|
|
// CGRateS Configuration file
|
|
//
|
|
// Used in apier_local_tests
|
|
// Starts rater, cdrs and mediator connecting over internal channel
|
|
|
|
"listen": {
|
|
"rpc_json": ":2012",
|
|
"rpc_gob": ":2013",
|
|
"http": ":2080",
|
|
},
|
|
|
|
"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,
|
|
"cdrstats_conns": [
|
|
{"address": "*internal"}
|
|
],
|
|
},
|
|
|
|
"cdrs": {
|
|
"enabled": true,
|
|
"store_cdrs": false,
|
|
"rals_conns": [
|
|
{"address": "*internal"}
|
|
],
|
|
"cdrstats_conns": [
|
|
{"address": "*internal"}
|
|
]
|
|
},
|
|
|
|
"cdrstats": {
|
|
"enabled": true,
|
|
"save_interval": "1s",
|
|
},
|
|
|
|
}
|