1234567891011121314151617181920212223242526272829303132333435363738394041 |
- ; Sample supervisor config file.
- ; managed by saltstack
- ;
- ; For more information on the config file, please see:
- ; http://supervisord.org/configuration.html
- ;
- ; Notes:
- ; - Shell expansion ("~" or "$HOME") is not supported. Environment
- ; variables can be expanded using this syntax: "%(ENV_HOME)s".
- ; - Comments must have a leading space: "a=b ;comment" not "a=b;comment".
- [unix_http_server]
- file=/tmp/supervisor.sock ; (the path to the socket file)
- [supervisord]
- logfile=/tmp/supervisord.log ; (main log file;default $CWD/supervisord.log)
- logfile_maxbytes=50MB ; (max main logfile bytes b4 rotation;default 50MB)
- logfile_backups=10 ; (num of main logfile rotation backups;default 10)
- loglevel=info ; (log level;default info; others: debug,warn,trace)
- pidfile=/tmp/supervisord.pid ; (supervisord pidfile;default supervisord.pid)
- nodaemon=false ; (start in foreground if true;default false)
- minfds=1024 ; (min. avail startup file descriptors;default 1024)
- minprocs=200 ; (min. avail process descriptors;default 200)
- [rpcinterface:supervisor]
- supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
- [supervisorctl]
- serverurl=unix:///tmp/supervisor.sock ; use a unix:// URL for a unix socket
- {% for item in supervisor_group %}
- [program: {{ item.name }}]
- command={{ item.command }}
- autostart={{ item.autostart }}
- user={{ item.user }}
- startsecs=1
- startretries=3
- stdout_logfile=/opt/supervisor_log/{{ item.name }}.log
- stderr_logfile=/opt/supervisor_log/{{ item.name }}_err.log
- {% endfor %}
|