Advertisement
Guest User

Untitled

a guest
Aug 20th, 2016
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. ; supervisor config file
  2.  
  3. [unix_http_server]
  4. file=/var/run/supervisor.sock ; (the path to the socket file)
  5. chmod=0700 ; sockef file mode (default 0700)
  6.  
  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. logfile_maxbytes=50MB ; (max main logfile bytes b4 rotation;default 50MB)
  12. logfile_backups=10 ; (num of main logfile rotation backups;default 10)
  13. loglevel=debug ; (log level;default info; others: debug,warn,trace)
  14. nodaemon=false ; (start in foreground if true;default false)
  15. minfds=1024 ; (min. avail startup file descriptors;default 1024)
  16. minprocs=200 ; (min. avail process descriptors;default 200)
  17.  
  18. ; the below section must remain in the config file for RPC
  19. ; (supervisorctl/web interface) to work, additional interfaces may be
  20. ; added by defining them in separate rpcinterface: sections
  21. [rpcinterface:supervisor]
  22. supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
  23.  
  24. [supervisorctl]
  25. serverurl=unix:///var/run/supervisor.sock ; use a unix:// URL for a unix socket
  26.  
  27. ; [inet_http_server]
  28. ; port = 9001
  29. ; username = user
  30. ; password = pass
  31.  
  32. ; The [include] section can just contain the "files" setting. This
  33. ; setting can list multiple files (separated by whitespace or
  34. ; newlines). It can also contain wildcards. The filenames are
  35. ; interpreted as relative to this file. Included files cannot
  36. ; include files themselves.
  37.  
  38. [include]
  39. files = /etc/supervisor/conf.d/*.ini
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement