23 lines
480 B
Plaintext
23 lines
480 B
Plaintext
[unix_http_server]
|
|
file = /tmp/supervisor.sock
|
|
chmod = 0777
|
|
chown = nobody:nogroup
|
|
|
|
[supervisord]
|
|
logfile = /tmp/supervisord.log
|
|
logfile_maxbytes = 50MB
|
|
logfile_backups=10
|
|
loglevel = info
|
|
pidfile = /tmp/supervisord.pid
|
|
nodaemon = true
|
|
umask = 022
|
|
identifier = supervisor
|
|
|
|
[supervisorctl]
|
|
serverurl = unix:///tmp/supervisor.sock
|
|
|
|
[rpcinterface:supervisor]
|
|
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
|
|
|
|
[include]
|
|
files = /etc/supervisord.d/*.conf |