supervisor.conf 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  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. [supervisord]
  6. user=root
  7. loglevel=debug
  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. [inet_http_server]
  12. port = 0.0.0.0:9001
  13. username = iksop
  14. password = queRini6
  15. ; the below section must remain in the config file for RPC
  16. ; (supervisorctl/web interface) to work, additional interfaces may be
  17. ; added by defining them in separate rpcinterface: sections
  18. [rpcinterface:supervisor]
  19. supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
  20. [supervisorctl]
  21. serverurl=unix:///var/run/supervisor.sock ; use a unix:// URL for a unix socket
  22. ; The [include] section can just contain the "files" setting. This
  23. ; setting can list multiple files (separated by whitespace or
  24. ; newlines). It can also contain wildcards. The filenames are
  25. ; interpreted as relative to this file. Included files *cannot*
  26. ; include files themselves.
  27. [include]
  28. files = /etc/supervisord/conf.d/*.conf