mirror of
https://github.com/elyby/accounts.git
synced 2024-12-02 11:41:05 +05:30
37 lines
1.4 KiB
Plaintext
37 lines
1.4 KiB
Plaintext
|
[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)
|
||
|
user=root
|
||
|
|
||
|
; 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
|
||
|
|
||
|
[supervisorctl]
|
||
|
serverurl=unix:///dev/shm/supervisor.sock ; use a unix:// URL for a unix socket
|
||
|
|
||
|
[program:php-fpm]
|
||
|
command=php-fpm
|
||
|
autostart=true
|
||
|
autorestart=true
|
||
|
priority=5
|
||
|
stdout_logfile=/dev/stdout
|
||
|
stdout_logfile_maxbytes=0
|
||
|
stderr_logfile=/dev/stderr
|
||
|
stderr_logfile_maxbytes=0
|
||
|
|
||
|
[program:account-queue-worker]
|
||
|
directory=/var/www/html
|
||
|
command=wait-for-it rabbitmq:5672 -- php yii account-queue
|
||
|
autostart=true
|
||
|
autorestart=true
|
||
|
priority=10
|