-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsupervisord.conf
60 lines (56 loc) · 1.51 KB
/
supervisord.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[supervisord]
nodaemon=true
user=root
logfile=/var/log/supervisor/supervisord.log
pidfile=/var/run/supervisord.pid
[program:php]
command=%(ENV_SUPERVISOR_PHP_COMMAND)s
user=%(ENV_SUPERVISOR_PHP_USER)s
environment=LARAVEL_APP="1"
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
# [program:reverb]
# command=php /var/www/html/artisan reverb:start --debug --port 8080 --host 0.0.0.0
# minfds=10000
# user=%(ENV_SUPERVISOR_PHP_USER)s
# autostart=true
# autorestart=true
# stopasgroup=true
# killasgroup=true
# redirect_stderr=true
# stdout_logfile=/dev/stdout
# stdout_logfile_maxbytes=0
# stderr_logfile=/dev/stderr
# stderr_logfile_maxbytes=0
# [program:queue]
# process_name=%(program_name)s_%(process_num)02d
# command=php /var/www/html/artisan queue:work --verbose --tries=3 --timeout=60
# user=%(ENV_SUPERVISOR_PHP_USER)s
# autostart=true
# autorestart=true
# stopasgroup=true
# killasgroup=true
# numprocs=8
# redirect_stderr=true
# environment=LARAVEL_APP="1"
# stdout_logfile=/dev/stdout
# stdout_logfile_maxbytes=0
# stderr_logfile=/dev/stderr
# stderr_logfile_maxbytes=0
# stopwaitsecs=3600
# [program:scheduler]
# command=php /var/www/html/artisan schedule:work
# user=%(ENV_SUPERVISOR_PHP_USER)s
# environment=LARAVEL_APP="1"
# user=%(ENV_SUPERVISOR_PHP_USER)s
# autostart=true
# autorestart=true
# stopasgroup=true
# killasgroup=true
# redirect_stderr=true
# stdout_logfile=/dev/stdout
# stdout_logfile_maxbytes=0
# stderr_logfile=/dev/stderr
# stderr_logfile_maxbytes=0