mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-12 18:46:24 +05:00
55 lines
989 B
JSON
55 lines
989 B
JSON
{
|
|
|
|
// 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.
|
|
|
|
|
|
"rals": {
|
|
"enabled": true, // enable Rater service: <true|false>
|
|
"cdrstats_conns": [
|
|
{"address": "*internal"}
|
|
],
|
|
"users_conns": [
|
|
{"address": "*internal"}
|
|
],
|
|
"aliases_conns": [
|
|
{"address": "*internal"}
|
|
],
|
|
},
|
|
|
|
|
|
"scheduler": {
|
|
"enabled": true, // start Scheduler service: <true|false>
|
|
},
|
|
|
|
|
|
"cdrs": {
|
|
"enabled": true, // start the CDR Server service: <true|false>
|
|
},
|
|
|
|
|
|
"cdrstats": {
|
|
"enabled": true, // starts the cdrstats service: <true|false>
|
|
},
|
|
|
|
|
|
"sm_generic": {
|
|
"enabled": true, // starts SessionManager service: <true|false>
|
|
},
|
|
|
|
|
|
"aliases": {
|
|
"enabled": true, // starts Aliases service: <true|false>.
|
|
},
|
|
|
|
|
|
"users": {
|
|
"enabled": true, // starts User service: <true|false>.
|
|
},
|
|
|
|
|
|
}
|