mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-20 14:48:43 +05:00
21 lines
813 B
JSON
21 lines
813 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.
|
|
|
|
|
|
"sm_freeswitch": {
|
|
"enabled": true, // starts SessionManager service: <true|false>
|
|
"rater": "127.0.0.1:2013", // address where to reach the Rater <""|internal|127.0.0.1:2013>
|
|
"cdrs": "127.0.0.1:2013", // address where to reach CDR Server, empty to disable CDR capturing <""|internal|x.y.z.y:1234>
|
|
"debit_interval": "5s", // interval to perform debits on.
|
|
"channel_sync_interval": "10s",
|
|
"connections":[ // instantiate connections to multiple FreeSWITCH servers
|
|
{"server": "127.0.0.1:8021", "password": "ClueCon", "reconnects": 15}
|
|
],
|
|
},
|
|
|
|
} |