|
|
|
@@ -0,0 +1,58 @@
|
|
|
|
|
; supervisor config file.
|
|
|
|
|
;
|
|
|
|
|
; 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".
|
|
|
|
|
; - Quotes around values are not supported, except in the case of
|
|
|
|
|
; the environment= options as shown below.
|
|
|
|
|
; - Comments must have a leading space: "a=b ;comment" not "a=b;comment".
|
|
|
|
|
; - Command will be truncated if it looks like a config file comment, e.g.
|
|
|
|
|
; "command=bash -c 'foo ; bar'" will truncate to "command=bash -c 'foo ".
|
|
|
|
|
|
|
|
|
|
[unix_http_server]
|
|
|
|
|
file=/data/data/com.termux/files/usr/tmp/supervisor.sock ; the path to the socket file
|
|
|
|
|
;chmod=0700 ; socket file mode (default 0700)
|
|
|
|
|
;chown=nobody:nogroup ; socket file uid:gid owner
|
|
|
|
|
;username=user ; default is no username (open server)
|
|
|
|
|
;password=123 ; default is no password (open server)
|
|
|
|
|
|
|
|
|
|
[inet_http_server] ; inet (TCP) server disabled by default
|
|
|
|
|
port=127.0.0.1:9001 ; ip_address:port specifier, *:port for all iface
|
|
|
|
|
username=root ; default is no username (open server)
|
|
|
|
|
password=toor ; default is no password (open server)
|
|
|
|
|
|
|
|
|
|
[supervisord]
|
|
|
|
|
logfile=/data/data/com.termux/files/usr/tmp/supervisord.log ; main log file; default $CWD/supervisord.log
|
|
|
|
|
logfile_maxbytes=50MB ; max main logfile bytes b4 rotation; default 50MB
|
|
|
|
|
logfile_backups=10 ; # of main logfile backups; 0 means none, default 10
|
|
|
|
|
loglevel=info ; log level; default info; others: debug,warn,trace
|
|
|
|
|
pidfile=/data/data/com.termux/files/usr/tmp/supervisord.pid ; supervisord pidfile; default supervisord.pid
|
|
|
|
|
nodaemon=false ; start in foreground if true; default false
|
|
|
|
|
silent=false ; no logs to stdout if true; default false
|
|
|
|
|
minfds=1024 ; min. avail startup file descriptors; default 1024
|
|
|
|
|
minprocs=200 ; min. avail process descriptors;default 200
|
|
|
|
|
;umask=022 ; process file creation umask; default 022
|
|
|
|
|
;user=supervisord ; setuid to this UNIX account at startup; recommended if root
|
|
|
|
|
;identifier=supervisor ; supervisord identifier, default is 'supervisor'
|
|
|
|
|
;directory=/tmp ; default is not to cd during start
|
|
|
|
|
;nocleanup=true ; don't clean up tempfiles at start; default false
|
|
|
|
|
;childlogdir=/tmp ; 'AUTO' child log dir, default $TEMP
|
|
|
|
|
;environment=KEY="value" ; key value pairs to add to environment
|
|
|
|
|
;strip_ansi=false ; strip ansi escape codes in logs; def. false
|
|
|
|
|
|
|
|
|
|
[rpcinterface:supervisor]
|
|
|
|
|
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
|
|
|
|
|
|
|
|
|
|
[supervisorctl]
|
|
|
|
|
;serverurl=unix:///data/data/com.termux/files/usr/tmp/supervisor.sock ; use a unix:// URL for a unix socket
|
|
|
|
|
serverurl=http://127.0.0.1:9001 ; use an http:// url to specify an inet socket
|
|
|
|
|
username=root ; should be same as in [*_http_server] if set
|
|
|
|
|
password=toor ; should be same as in [*_http_server] if set
|
|
|
|
|
;prompt=mysupervisor ; cmd line prompt (default "supervisor")
|
|
|
|
|
;history_file=~/.sc_history ; use readline history if available
|
|
|
|
|
|
|
|
|
|
[include]
|
|
|
|
|
files = /data/data/com.termux/files/usr/etc/supervisor.d/*.conf
|