{ // Real-time Charging System for Telecom & ISP environments // Copyright (C) ITsysCOM GmbH // // This file contains the default configuration hardcoded into CGRateS. // This is what you get when you load CGRateS with an empty configuration file. "listen": { "rpc_json": "0.0.0.0:3012", // RPC JSON listening address "rpc_gob": "0.0.0.0:3013", // RPC GOB listening address "http": "0.0.0.0:3080", // HTTP listening address }, "rpc_conns": { "conn1": { "strategy": "*first", "conns": [ {"address": "127.0.0.1:3012", "transport":"*json"} ], }, }, "stor_db": { // database used to store offline tariff plans and CDRs "db_password": "CGRateS.org", // password to use when connecting to stordb }, "rals": { "enabled": true, // enable Rater service: }, "schedulers": { "enabled": true, // start Scheduler service: }, "cdrs": { "enabled": true, // start the CDR Server service: }, "attributes": { "enabled": true, }, "chargers": { "enabled": true, "attributes_conns": ["*internal"], }, "sessions": { "enabled": true, // starts SessionManager service: "rals_conns": ["*internal"], "cdrs_conns": ["*internal"], "chargers_conns": ["*internal"], }, "users": { "enabled": true, // starts User service: . }, "apier": { "caches_conns":["conn1"], "scheduler_conns": ["*internal"], }, }