mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-25 00:58:45 +05:00
47 lines
669 B
JSON
47 lines
669 B
JSON
{
|
|
// CGRateS Configuration file
|
|
//
|
|
// Used for SessionSv1 integration tests
|
|
|
|
|
|
"general": {
|
|
"log_level": 7,
|
|
"node_id":"MasterReplication"
|
|
},
|
|
|
|
|
|
"listen": {
|
|
"rpc_json": "127.0.0.1:22012",
|
|
"rpc_gob": "127.0.0.1:22013",
|
|
"http": "127.0.0.1:22080"
|
|
},
|
|
|
|
"data_db": {
|
|
"db_type": "*internal",
|
|
},
|
|
|
|
|
|
"stor_db": {
|
|
"db_type": "*internal",
|
|
},
|
|
|
|
|
|
"chargers": {
|
|
"enabled": true,
|
|
},
|
|
|
|
|
|
|
|
"sessions": {
|
|
"enabled": true, // starts SessionManager service: <true|false>
|
|
"debit_interval": "5ms", // interval to perform debits on.
|
|
"listen_bijson": "127.0.0.1:22014", // address where to listen for bidirectional JSON-RPC requests
|
|
},
|
|
|
|
"admins": {
|
|
"enabled": true,
|
|
},
|
|
|
|
|
|
}
|