Files
cgrates/data/conf/samples/redis_tls/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

48 lines
636 B
JSON

{
// CGRateS Configuration file
//
"general": {
"log_level": 7,
"node_id": "RedisTLS"
},
"listen": {
"rpc_json": ":2012",
"rpc_gob": ":2013",
"http": ":2080",
},
"data_db": {
"db_type": "redis",
"db_host":"127.0.0.1:6400",
"db_name": "10",
"opts": {
"redisTLS": true,
"redisClientCertificate":"/usr/share/cgrates/tls/client.crt",
"redisClientKey":"/usr/share/cgrates/tls/client.key",
"redisCACertificate":"/usr/share/cgrates/tls/ca.crt",
},
},
"stor_db": {
"db_password": "CGRateS.org",
},
"rals": {
"enabled": true,
},
"apiers": {
"enabled": true,
},
}