Files
cgrates/data/conf/samples/multiral1_mongo/cgrates.json
2023-10-25 10:16:07 +02:00

36 lines
570 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
},
"data_db": {
"db_type": "mongo",
"db_name": "10",
"db_port": 27017,
},
"stor_db": {
"db_type": "mongo",
"db_name": "cgrates",
"db_port": 27017,
"db_password": "",
},
"rals": {
"enabled": true, // enable Rater service: <true|false>
},
}