xmlrpc2di.conf 920 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # server_ip : IP to bind XMLRPC server to
  2. # leave empty for ANY interface
  3. server_ip=127.0.0.1
  4. # port to bind XMLRPC server to
  5. xmlrpc_port=8090
  6. # run multi-threaded server?
  7. # Default: yes
  8. #
  9. # multithreaded = yes
  10. # threads to run - this many requests can be processed in parallel
  11. # Default: 5
  12. #
  13. # threads=5
  14. # export all DI functions with the function call 'di'?
  15. # defaults to: yes
  16. # export_di=yes
  17. #
  18. # these DI interfaces are searched for functions to
  19. # export under their proper function names
  20. # defaults to: none
  21. # direct_export=di_dial;registrar_client
  22. direct_export=sbc
  23. # run the XMLRPC server at all (default: yes)
  24. #
  25. # run_server=yes
  26. # timeout for client requests, in milliseconds (0 to disable)
  27. #
  28. # server_timeout=500
  29. # print parameters of XMLRPC server calls into debug log [yes|no]
  30. # debug_server_params=yes
  31. #
  32. # print result of XMLRPC server calls into debug log [yes|no]
  33. # debug_server_result=yes
  34. #