You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
992 B
22 lines
992 B
6 years ago
|
[unix_http_server]
|
||
|
file=/tmp/supervisor.sock ; path to your socket file
|
||
|
|
||
|
[supervisord]
|
||
|
logfile=/tmp/supervisord.log ; supervisord log file
|
||
|
logfile_maxbytes=50MB ; maximum size of logfile before rotation
|
||
|
logfile_backups=10 ; number of backed up logfiles
|
||
|
loglevel=%(ENV_LOG_LEVEL)s ; info, debug, warn, trace
|
||
|
pidfile=/tmp/supervisord.pid ; pidfile location
|
||
|
nodaemon=true ; run supervisord as a daemon
|
||
|
minfds=1024 ; number of startup file descriptors
|
||
|
minprocs=200 ; number of process descriptors
|
||
|
|
||
|
[rpcinterface:supervisor]
|
||
|
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
|
||
|
|
||
|
[supervisorctl]
|
||
|
serverurl=unix:///tmp/supervisor.sock ; use a unix:// URL for a unix socket
|
||
|
|
||
|
[include]
|
||
|
files = /etc/supervisor/conf.d/*.conf
|