Files
cgrates/data/conf/samples/redis_cluster/cgrates.json
ionutboangiu e99d0f63bf Remove executable bit from files where it's not needed
Specifically files ending in:
- .go
- .md
- .conf
- .json
- .csv
2023-06-23 11:54:59 +02:00

45 lines
668 B
JSON

{
// CGRateS Configuration file
//
"general": {
"log_level": 7,
},
"listen": {
"rpc_json": ":2012",
"rpc_gob": ":2013",
"http": ":2080",
},
"data_db": { // database used to store runtime data (eg: accounts, cdr stats)
"db_type": "redis", // data_db type: <redis|mongo>
"db_host":"127.0.0.1:7001",
"db_name": "10", // data_db database name to connect to
"opts": {
"redisCluster": true,
"redisClusterSync": "100ms", // the sync interval for the redis cluster
},
},
"stor_db": {
"db_password": "CGRateS.org",
},
"rals": {
"enabled": true,
},
"apiers": {
"enabled": true,
},
}