mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-12 10:36:24 +05:00
28 lines
455 B
JSON
28 lines
455 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": "redis",
|
|
"db_port": 6379,
|
|
"db_name": "10",
|
|
},
|
|
|
|
"rates": {
|
|
"enabled": true,
|
|
},
|
|
|
|
}
|