/silk/conf_templates/supervisord_root.conf

https://bitbucket.org/btubbs/silk-deployment/ · Config · 31 lines · 24 code · 7 blank · 0 comment · 0 complexity · f2007fc12ae21ae6694d4a703cd091ce MD5 · raw file

  1. ; supervisor config file
  2. [unix_http_server]
  3. file=/var/run//supervisor.sock ; (the path to the socket file)
  4. chmod=0700 ; sockef file mode (default 0700)
  5. [inet_http_server]
  6. port = 127.0.0.1:9001
  7. [supervisord]
  8. logfile=/var/log/supervisor/supervisord.log ; (main log file;default $CWD/supervisord.log)
  9. pidfile=/var/run/supervisord.pid ; (supervisord pidfile;default supervisord.pid)
  10. childlogdir=/var/log/supervisor ; ('AUTO' child log dir, default $TEMP)
  11. ; the below section must remain in the config file for RPC
  12. ; (supervisorctl/web interface) to work, additional interfaces may be
  13. ; added by defining them in separate rpcinterface: sections
  14. [rpcinterface:supervisor]
  15. supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
  16. [supervisorctl]
  17. serverurl=unix:///var/run//supervisor.sock ; use a unix:// URL for a unix socket
  18. ; The [include] section can just contain the "files" setting. This
  19. ; setting can list multiple files (separated by whitespace or
  20. ; newlines). It can also contain wildcards. The filenames are
  21. ; interpreted as relative to this file. Included files *cannot*
  22. ; include files themselves.
  23. [include]
  24. files = %(srv_root)s/*/conf/supervisord.conf