2
0

erlang_event.conf.xml 1.2 KB

1234567891011121314151617181920212223
  1. <configuration name="erlang_event.conf" description="Erlang Socket Client">
  2. <settings>
  3. <param name="listen-ip" value="0.0.0.0"/>
  4. <param name="listen-port" value="8031"/>
  5. <!-- Specify the first part of the node name
  6. (the host part after the @ will be autodetected)
  7. OR pass a complete nodename to avoid autodetection
  8. eg. freeswitch@example or freeswitch@example.com.
  9. If you pass a complete node name, the 'shortname' parameter has no effect. -->
  10. <param name="nodename" value="freeswitch"/>
  11. <!-- Specify this OR 'cookie-file' or $HOME/.erlang.cookie will be read -->
  12. <param name="cookie" value="ClueCon"/>
  13. <!-- Read a cookie from an arbitary erlang cookie file instead -->
  14. <!--<param name="cookie-file" value="/$${temp_dir}/erlang.cookie"/>-->
  15. <param name="shortname" value="true"/>
  16. <!-- in additon to cookie, optionally restrict by ACL -->
  17. <!--<param name="apply-inbound-acl" value="lan"/>-->
  18. <!-- alternative is "binary" -->
  19. <!--<param name="encoding" value="string"/>-->
  20. <!-- provide compatability with previous OTP release (use with care) -->
  21. <!--<param name="compat-rel" value="12"/> -->
  22. </settings>
  23. </configuration>