mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-07-06 04:11:52 +00:00
7a6303d6b3
The default "vanilla" configuration that comes with FreeSWITCH has been designed as a showcase of the configurability of the myriad of features that FreeSWITCH comes with out of the box. While it is very helpful in tinkering with FreeSWITCH, it has a lot of extraneous stuff enabled/configured for use in a production system. This configuration aims to take the reverse stance -- it attempts to be a starting point for configuring a new system by "adding" required features (instead of removing them as one would do if one starts with the default configuration). Jira: FS-7362 Source: https://github.com/mx4492/freeswitch-minimal-conf/commit/270941d6f2dca279f1bb8762d072940273d5ae11
41 lines
954 B
XML
41 lines
954 B
XML
<configuration name="modules.conf" description="Modules">
|
|
<modules>
|
|
|
|
<!-- Loggers (I'd load these first) -->
|
|
<load module="mod_console"/>
|
|
<load module="mod_logfile"/>
|
|
|
|
<!-- XML Interfaces -->
|
|
<load module="mod_xml_rpc"/>
|
|
|
|
<!-- Event Handlers -->
|
|
<load module="mod_cdr_csv"/>
|
|
<load module="mod_event_socket"/>
|
|
|
|
<!-- Endpoints -->
|
|
<load module="mod_sofia"/>
|
|
<load module="mod_loopback"/>
|
|
|
|
<!-- Applications -->
|
|
<load module="mod_commands"/>
|
|
<load module="mod_conference"/>
|
|
<load module="mod_db"/>
|
|
<load module="mod_dptools"/>
|
|
<load module="mod_expr"/>
|
|
<load module="mod_hash"/>
|
|
<load module="mod_esf"/>
|
|
|
|
<!-- Dialplan Interfaces -->
|
|
<load module="mod_dialplan_xml"/>
|
|
|
|
<!-- Codec Interfaces -->
|
|
|
|
<!-- File Format Interfaces -->
|
|
<load module="mod_sndfile"/>
|
|
<load module="mod_native_file"/>
|
|
|
|
<!-- Third party modules -->
|
|
|
|
</modules>
|
|
</configuration>
|