Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. #### zrpc.conf ####
  2. ##
  3. ## Configuration for the Zentific RPC server
  4. ##
  5.  
  6. ## XML-RPC Server
  7. ## provides a collection point for all node and vm statistics, while also providing an interface for the frontend.
  8. ##
  9. ## LISTEN -- Specify here the host to listen upon (0.0.0.0 to listen upon all interfaces).
  10. ## PORT -- Specify here the port used to serve XML-RPC. Default is 4444.
  11. ## USE_SSL -- Specify here (if port != 443) whether SSL should be used to post XML-RPC. Default is "no".
  12. ## SSL_PATH -- Specify here the path to the server ssl certificate. Requires USE_SSL="yes"
  13. ## THREADS -- Specify here the number of server threads spawned to handle incoming requests.
  14. ## PID_FILE -- Specify here path to the PID file (default is /var/run/zrpc.pid).
  15. USE_SSL="no"
  16. PORT="4444"
  17. LISTEN="0.0.0.0"
  18. #DB_MODULES_PATH="/opt/zentific/db"
  19. THREADS="10"
  20.  
  21. #SELF_HOST="1" ## If you are not using a web server to proxy serve the interface, enable this option
  22. #WEB_ROOT="/opt/www/zentific.com" ## If you enabled SELF_HOST, you should enable this
  23.  
  24. ## Logging options:
  25. ## LOG_TYPE
  26. ## -default is local and db. all critical errors (e.g., dbd down are logged to syslog)
  27. ## file (/opt/zentific/logs/zrpc.log)
  28. ## LOG_FILE can be optionally defined to specify destination file
  29. ## lsyslog (logal syslog.)
  30. ## rsyslog (remote syslog aggregation. remote=hostnameOrIp:port)
  31. ## LOG_LEVEL
  32. ## DEVEL, TEST, QUIETTEST, PRODUCTION, NONE
  33. LOG_TYPE="file"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement