mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
30 lines
735 B
Plaintext
30 lines
735 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
user=root
|
|
logfile=/var/log/supervisor/supervisord.log
|
|
pidfile=/var/run/supervisord.pid
|
|
|
|
[program:php]
|
|
command=/usr/bin/php -d variables_order=EGPCS /var/www/html/artisan serve --host=0.0.0.0 --port=80
|
|
user=sail
|
|
environment=LARAVEL_SAIL="1"
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
|
|
[program:cron]
|
|
command=/usr/sbin/cron -f -l 8
|
|
autostart=true
|
|
stdout_logfile=/var/log/cron.out.log
|
|
stderr_logfile=/var/log/cron.err.log
|
|
|
|
[program:horizon]
|
|
process_name=%(program_name)s
|
|
command=php /var/www/html/artisan horizon
|
|
autostart=true
|
|
autorestart=true
|
|
user=sail
|
|
redirect_stderr=true
|
|
stdout_logfile=/var/www/html/storage/logs/horizon.log
|
|
stopwaitsecs=3600 |