mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-15 05:09:54 +05:00
59 lines
641 B
JSON
59 lines
641 B
JSON
{
|
|
// CGRateS Configuration file
|
|
//
|
|
// Used for SessionSv1 integration tests
|
|
|
|
|
|
"general": {
|
|
"log_level": 7,
|
|
},
|
|
|
|
|
|
"listen": {
|
|
"rpc_json": ":2012",
|
|
"rpc_gob": ":2013",
|
|
"http": ":2080",
|
|
},
|
|
|
|
|
|
"stor_db": {
|
|
"db_password": "CGRateS.org",
|
|
},
|
|
|
|
|
|
"rals": {
|
|
"enabled": true,
|
|
},
|
|
|
|
|
|
"cdrs": {
|
|
"enabled": true,
|
|
"chargers_conns": [],
|
|
"rals_conns": [],
|
|
},
|
|
|
|
|
|
"sessions": {
|
|
"enabled": true,
|
|
"cdrs_conns": [
|
|
{"address": "*internal"}
|
|
],
|
|
},
|
|
|
|
|
|
"ers": {
|
|
"enabled": true,
|
|
"readers": [
|
|
{
|
|
"id": "file_reader1",
|
|
"run_delay": -1,
|
|
"type": "*file_csv",
|
|
"source_path": "/tmp/ers/in",
|
|
"processed_path": "/tmp/ers/out",
|
|
},
|
|
],
|
|
},
|
|
|
|
|
|
}
|