osp.conf.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <configuration name="osp.conf" description="OSP Module Configuration">
  2. <settings>
  3. <!-- Debug info flag -->
  4. <param name="debug-info" value="disabled"/>
  5. <!-- Log level for debug info -->
  6. <param name="log-level" value="info"/>
  7. <!-- Crypto hareware accelerate is disabled by default -->
  8. <param name="crypto-hardware" value="disabled"/>
  9. <!-- SIP settings -->
  10. <param name="sip" module="sofia" profile="external"/>
  11. <!-- H.323 settings -->
  12. <!-- <param name="h323" module="h323" profile="external"/> -->
  13. <!-- IAX settings -->
  14. <!-- <param name="iax" module="iax" profile="external"/> -->
  15. <!-- Skype settings -->
  16. <!-- <param name="skype" module="skypopen" profile="external"/> -->
  17. <!-- Default destination protocol -->
  18. <param name="default-protocol" value="sip"/>
  19. </settings>
  20. <profiles>
  21. <!-- Default OSP profile -->
  22. <profile name="default">
  23. <!-- Service point URLs, up to 8 allowed -->
  24. <!-- <param name="service-point-url" value="http://osptestserver.transnexus.com:5045/osp"/> -->
  25. <!-- <param name="service-point-url" value="https://127.0.0.1:1443/osp"/> -->
  26. <param name="service-point-url" value="http://127.0.0.1:5045/osp"/>
  27. <!-- FreeSWITCH IP address for OSP -->
  28. <param name="device-ip" value="127.0.0.1:5080"/>
  29. <!-- SSL lifetime in seconds -->
  30. <param name="ssl-lifetime" value="300"/>
  31. <!-- HTTP max connections, 1~1000 -->
  32. <param name="http-max-connections" value="20"/>
  33. <!-- HTTP persistence in seconds -->
  34. <param name="http-persistence" value="60"/>
  35. <!-- HTTP retry delay in seconds, 0~10 -->
  36. <param name="http-retry-delay" value="0"/>
  37. <!-- HTTP retry limit, 0~100 -->
  38. <param name="http-retry-limit" value="2"/>
  39. <!-- HTTP timeout in milliseconds, 200~60000 -->
  40. <param name="http-timeout" value="10000"/>
  41. <!-- OSP work mode, direct or indirect -->
  42. <param name="work-mode" value="direct"/>
  43. <!-- OSP service type, voice or npquery -->
  44. <param name="service-type" value="voice"/>
  45. <!-- Max number of destinations -->
  46. <param name="max-destinations" value="12"/>
  47. </profile>
  48. </profiles>
  49. </configuration>