mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-12 18:46:24 +05:00
36 lines
1.3 KiB
INI
36 lines
1.3 KiB
INI
# CGRateS Configuration file
|
|
#
|
|
# This file contains the default configuration hardcoded into CGRateS.
|
|
# This is what you get when you load CGRateS with an empty configuration file.
|
|
# [global] must exist in all files, rest of the configuration is inter-changeable.
|
|
|
|
[rater]
|
|
enabled = true # Enable RaterCDRSExportPath service: <true|false>.
|
|
|
|
[scheduler]
|
|
enabled = true # Starts Scheduler service: <true|false>.
|
|
|
|
[cdrs]
|
|
enabled = true # Start the CDR Server service: <true|false>.
|
|
mediator = internal # Address where to reach the Mediator. Empty for disabling mediation. <""|internal>
|
|
|
|
[cdre]
|
|
export_dir = /tmp/cgrates/cdr/cdre/csv # Path where the exported CDRs will be placed
|
|
|
|
[cdrc]
|
|
cdr_in_dir = /tmp/cgrates/cdr/cdrc/in # Absolute path towards the directory where the CDRs are stored.
|
|
cdr_out_dir =/tmp/cgrates/cdr/cdrc/out # Absolute path towards the directory where processed CDRs will be moved.
|
|
|
|
[mediator]
|
|
enabled = true # Starts Mediator service: <true|false>.
|
|
rater = 127.0.0.1:2012 # Address where to reach the Rater: <internal|x.y.z.y:1234>
|
|
|
|
[history_server]
|
|
enabled = true # Starts History service: <true|false>.
|
|
history_dir = /tmp/cgrates/history # Location on disk where to store history files.
|
|
|
|
[history_agent]
|
|
enabled = true # Starts History as a client: <true|false>.
|
|
|
|
|