mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
50 lines
516 B
JSON
50 lines
516 B
JSON
{
|
|
// CGRateS Configuration file
|
|
|
|
|
|
"general": {
|
|
"log_level": 7,
|
|
"reply_timeout": "30s",
|
|
},
|
|
|
|
|
|
"listen": {
|
|
"rpc_json": ":2022",
|
|
"rpc_gob": ":2023",
|
|
"http": ":2280"
|
|
},
|
|
|
|
|
|
"data_db": {
|
|
"db_type": "mongo",
|
|
"db_name": "10",
|
|
"db_port": 27017,
|
|
},
|
|
|
|
|
|
"stor_db": {
|
|
"db_type": "mongo",
|
|
"db_name": "cgrates",
|
|
"db_port": 27017,
|
|
},
|
|
|
|
|
|
"rals": {
|
|
"enabled": true,
|
|
},
|
|
|
|
|
|
"scheduler": {
|
|
"enabled": true,
|
|
},
|
|
|
|
|
|
"apier": {
|
|
"scheduler_conns": [ // connections to SchedulerS for reloads
|
|
{"address": "*internal"},
|
|
],
|
|
},
|
|
|
|
|
|
}
|