mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
21 lines
586 B
JSON
21 lines
586 B
JSON
{
|
|
// CGRateS Configuration file
|
|
//
|
|
// Used in apier_local_tests
|
|
// Starts rater, cdrs and mediator connecting over internal channel
|
|
|
|
"rater": {
|
|
"enabled": true, // enable Rater service: <true|false>
|
|
},
|
|
|
|
"cdrs": {
|
|
"enabled": true, // start the CDR Server service: <true|false>
|
|
"store_cdrs": false, // store cdrs in storDb
|
|
"cdr_replication":[ // replicate the rated CDR to a number of servers
|
|
{"transport": "*http_post", "server": "http://127.0.0.1:12080/cdr_http", "attempts": 1},
|
|
//{"transport": "*http_post", "server": "http://127.0.0.1:8000/mycdr"},
|
|
|
|
],
|
|
},
|
|
|
|
} |