forked from Mirrors/freeswitch
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: 270941d6f2
20 lines
645 B
XML
20 lines
645 B
XML
<profile name="internal">
|
|
<settings>
|
|
<param name="auth-calls" value="true"/>
|
|
<param name="apply-nat-acl" value="nat.auto"/>
|
|
|
|
<param name="debug" value="0"/>
|
|
<param name="sip-trace" value="yes"/>
|
|
|
|
<param name="dialplan" value="XML"/>
|
|
<param name="context" value="default"/>
|
|
<param name="codec-prefs" value="$${global_codec_prefs}"/>
|
|
|
|
<param name="rtp-ip" value="$${local_ip_v4}"/>
|
|
<param name="sip-ip" value="$${local_ip_v4}"/>
|
|
<param name="ext-rtp-ip" value="auto-nat"/>
|
|
<param name="ext-sip-ip" value="auto-nat"/>
|
|
<param name="sip-port" value="$${internal_sip_port}"/>
|
|
</settings>
|
|
</profile>
|