mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
41 lines
725 B
JSON
41 lines
725 B
JSON
{
|
|
// CGRateS Configuration file
|
|
//
|
|
// Used in apier/v1/cdrs_it_test
|
|
|
|
|
|
"data_db": { // database used to store runtime data (eg: accounts, cdr stats)
|
|
"db_type": "redis", // data_db type: <redis|mongo>
|
|
"db_port": 6379, // data_db port to reach the database
|
|
"db_name": "10", // data_db database name to connect to
|
|
},
|
|
|
|
"stor_db": {
|
|
"db_type": "postgres", // stor database type to use: <mysql|postgres>
|
|
"db_port": 5432, // the port to reach the stordb
|
|
"db_password": "CGRateS.org",
|
|
},
|
|
|
|
"rals": {
|
|
"enabled": true
|
|
},
|
|
|
|
|
|
"schedulers": {
|
|
"enabled": true
|
|
},
|
|
|
|
|
|
"cdrs": {
|
|
"enabled": true,
|
|
"rals_conns": ["*localhost"],
|
|
},
|
|
|
|
|
|
"apiers": {
|
|
"enabled": true,
|
|
"scheduler_conns": ["*internal"],
|
|
},
|
|
|
|
}
|