mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-07-05 03:41:53 +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
13 lines
514 B
XML
13 lines
514 B
XML
<configuration name="xml_rpc.conf" description="XML RPC">
|
|
<settings>
|
|
<!-- The port where you want to run the http service (default 8080) -->
|
|
<param name="http-port" value="8080"/>
|
|
<!-- if all 3 of the following params exist all http traffic will require auth -->
|
|
<param name="auth-realm" value="freeswitch"/>
|
|
<param name="auth-user" value="freeswitch"/>
|
|
<param name="auth-pass" value="$${xml_rpc_password}"/>
|
|
|
|
<param name="commands-to-log" value=".*"/>
|
|
</settings>
|
|
</configuration>
|