supervisor.conf 1.2 KB

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