NEW configuration format - cgrates.json

This commit is contained in:
DanB
2015-01-18 12:54:07 +01:00
parent bf27fa3512
commit 6126b69c4e
55 changed files with 1355 additions and 3834 deletions

View File

@@ -0,0 +1,31 @@
{
// CGRateS Configuration file
//
// Used in mediator_local_test
// Starts rater, cdrs and mediator connecting over internal channel
"rater": {
"enabled": true, // enable Rater service: <true|false>
},
"scheduler": {
"enabled": true, // start Scheduler service: <true|false>
},
"cdrs": {
"enabled": true, // start the CDR Server service: <true|false>
"mediator": "internal", // address where to reach the Mediator.
},
"cdre": {
"*default": {
"export_dir": "/tmp", // path where the exported CDRs will be placed
}
},
"mediator": {
"enabled": true, // starts Mediator service: <true|false>.
"cdrstats": "internal",
},
}