|
@@ -14,7 +14,6 @@ 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)
|
|
|
-
|
|
|
;user=chrism ; (default is current user, required if root)
|
|
|
;identifier=supervisor ; (supervisord identifier, default is 'supervisor')
|
|
|
;directory=/tmp ; (default is not to cd during start)
|
|
@@ -25,6 +24,9 @@ minprocs=200 ; (min. avail process descriptors;default 200)
|
|
|
;environment=KEY=value ; (key value pairs to add to environment)
|
|
|
;strip_ansi=false ; (strip ansi escape codes in logs; def. false)
|
|
|
|
|
|
+; the below section must remain in the config file for RPC
|
|
|
+; (supervisorctl/web interface) to work, additional interfaces may be
|
|
|
+; added by defining them in separate rpcinterface: sections
|
|
|
[rpcinterface:supervisor]
|
|
|
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
|
|
|
|
|
@@ -76,6 +78,8 @@ serverurl=unix:///tmp/supervisor.sock ; use a unix:// URL for a unix socket
|
|
|
;numprocs=1 ; number of processes copies to start (def 1)
|
|
|
;events=EVENT ; event notif. types to subscribe to (req'd)
|
|
|
;buffer_size=10 ; event buffer queue size (default 10)
|
|
|
+;directory=/tmp ; directory to cwd to before exec (def no cwd)
|
|
|
+;umask=022 ; umask for process (default None)
|
|
|
;priority=-1 ; the relative start priority (default -1)
|
|
|
;autostart=true ; start at supervisord start (default: true)
|
|
|
;autorestart=true ; retstart at unexpected quit (default: true)
|