mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-14 20:59:53 +05:00
56 lines
786 B
JSON
56 lines
786 B
JSON
{
|
|
// CGRateS Configuration file
|
|
//
|
|
// Used for multiple RAL configuration tests
|
|
// Starts RAL
|
|
|
|
"general": {
|
|
"node_id":"node2",
|
|
},
|
|
|
|
"listen": {
|
|
"rpc_json": ":12012",
|
|
"rpc_gob": ":12013",
|
|
"http": ":12080",
|
|
},
|
|
|
|
"db": {
|
|
"db_conns": {
|
|
"*default": {
|
|
"db_type": "mongo",
|
|
"db_host": "127.0.0.1",
|
|
"db_port": 27017,
|
|
"db_name": "10",
|
|
"db_user": "cgrates"
|
|
},
|
|
"StorDB": {
|
|
"db_type": "mongo",
|
|
"db_host": "127.0.0.1",
|
|
"db_port": 27017,
|
|
"db_name": "cgrates",
|
|
"db_user": "cgrates"
|
|
}
|
|
},
|
|
"items": {
|
|
"*cdrs": {"limit": -1, "ttl": "", "static_ttl": false, "remote":false, "replicate":false, "dbConn": "StorDB"}
|
|
}
|
|
},
|
|
|
|
"rates": {
|
|
"enabled": true,
|
|
},
|
|
|
|
"cdrs": {
|
|
"enabled": true,
|
|
},
|
|
|
|
"chargers": {
|
|
"enabled": true,
|
|
},
|
|
|
|
"sessions": {
|
|
"enabled": true,
|
|
},
|
|
|
|
}
|