mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
36 lines
524 B
JSON
36 lines
524 B
JSON
{
|
|
// CGRateS Configuration file
|
|
//
|
|
// Used for multiple RAL configuration tests
|
|
// Starts rater, scheduler
|
|
|
|
"general": {
|
|
"node_id":"node1",
|
|
},
|
|
|
|
"listen": {
|
|
"rpc_json": ":2012", // RPC JSON listening address
|
|
"rpc_gob": ":2013", // RPC GOB listening address
|
|
"http": ":2080", // HTTP listening address
|
|
},
|
|
|
|
"db": {
|
|
"db_conns": {
|
|
"*default": {
|
|
"db_type": "*internal",
|
|
"opts":{
|
|
"internalDBRewriteInterval": "0s",
|
|
"internalDBDumpInterval": "0s"
|
|
}
|
|
},
|
|
},
|
|
|
|
},
|
|
|
|
|
|
"rates": {
|
|
"enabled": true,
|
|
},
|
|
|
|
}
|