Advertisement
Guest User

Untitled

a guest
Jun 11th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. ; Sample supervisor config file.
  2. ;
  3. ; For more information on the config file, please see:
  4. ; http://supervisord.org/configuration.html
  5. ;
  6. ; Notes:
  7. ; - Shell expansion ("~" or "$HOME") is not supported. Environment
  8. ; variables can be expanded using this syntax: "%(ENV_HOME)s".
  9. ; - Quotes around values are not supported, except in the case of
  10. ; the environment= options as shown below.
  11. ; - Comments must have a leading space: "a=b ;comment" not "a=b;comment".
  12. ; - Command will be truncated if it looks like a config file comment, e.g.
  13. ; "command=bash -c 'foo ; bar'" will truncate to "command=bash -c 'foo ".
  14.  
  15. [unix_http_server]
  16. file=/tmp/supervisor.sock ; the path to the socket file
  17. ;chmod=0700 ; socket file mode (default 0700)
  18. ;chown=nobody:nogroup ; socket file uid:gid owner
  19. ;username=user ; default is no username (open server)
  20. ;password=123 ; default is no password (open server)
  21.  
  22. [inet_http_server] ; inet (TCP) server disabled by default
  23. port=127.0.0.1:9001 ; ip_address:port specifier, *:port for all iface
  24. username=seat ; default is no username (open server)
  25. password=seat123 ; default is no password (open server)
  26.  
  27. [supervisord]
  28. logfile=/tmp/supervisord.log ; main log file; default $CWD/supervisord.log
  29. logfile_maxbytes=50MB ; max main logfile bytes b4 rotation; default 50MB
  30. logfile_backups=10 ; # of main logfile backups; 0 means none, default 10
  31. loglevel=info ; log level; default info; others: debug,warn,trace
  32. pidfile=/tmp/supervisord.pid ; supervisord pidfile; default supervisord.pid
  33. nodaemon=false ; start in foreground if true; default false
  34. minfds=1024 ; min. avail startup file descriptors; default 1024
  35. minprocs=200 ; min. avail process descriptors;default 200
  36. ;umask=022 ; process file creation umask; default 022
  37. ;user=chrism ; default is current user, required if root
  38. ;identifier=supervisor ; supervisord identifier, default is 'supervisor'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement