Files
cgrates/data/conf/samples/cdrsv1postgres/cgrates.json
2019-12-10 03:00:23 -05:00

44 lines
813 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
},
"scheduler": {
"enabled": true
},
"cdrs": {
"enabled": true,
"rals_conns": [
{"address": "127.0.0.1:2012", "transport":"*json"},
],
},
"apier": {
"scheduler_conns": [ // connections to SchedulerS for reloads
{"address": "*internal"},
],
},
}