mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-14 12:49:54 +05:00
63 lines
1.1 KiB
JSON
63 lines
1.1 KiB
JSON
{
|
|
// CGRateS Configuration file
|
|
//
|
|
// Used for cgradmin
|
|
// Starts rater, scheduler
|
|
|
|
"general": {
|
|
"node_id": "DispatcherS1",
|
|
"log_level": 7,
|
|
"reconnects": 1
|
|
},
|
|
|
|
"listen": {
|
|
"rpc_json": ":2012", // RPC JSON listening address
|
|
"rpc_gob": ":2013", // RPC GOB listening address
|
|
"http": ":2080" // HTTP listening address
|
|
},
|
|
|
|
"data_db": { // database used to store runtime data (eg: accounts, cdr stats)
|
|
"db_type": "mongo", // stor database type to use: <mysql|postgres>
|
|
"db_port": 27017, // the port to reach the stordb
|
|
"db_name": "datadb",
|
|
"db_password": ""
|
|
},
|
|
|
|
"stor_db": {
|
|
"db_type": "mongo", // stor database type to use: <mysql|postgres>
|
|
"db_port": 27017, // the port to reach the stordb
|
|
"db_name": "stordb",
|
|
"db_password": ""
|
|
},
|
|
|
|
"attributes": {
|
|
"enabled": true
|
|
},
|
|
|
|
"schedulers": {
|
|
"enabled": true
|
|
},
|
|
|
|
"rals": {
|
|
"enabled": true
|
|
},
|
|
|
|
"dispatchers":{
|
|
"enabled": true,
|
|
"attributes_conns": ["*internal"]
|
|
},
|
|
|
|
|
|
"diameter_agent": {
|
|
"enabled": true,
|
|
"sessions_conns": ["*localhost"],
|
|
"asr_template": "*asr"
|
|
},
|
|
|
|
|
|
"admins": {
|
|
"enabled": true,
|
|
"scheduler_conns": ["*internal"]
|
|
}
|
|
}
|