23 lines
491 B
Plaintext
23 lines
491 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
logfile=/var/log/supervisord.log
|
|
pidfile=/var/run/supervisord.pid
|
|
|
|
[program:web]
|
|
command=frankenphp run --config /etc/caddy/Caddyfile
|
|
directory=/app
|
|
autostart=true
|
|
autorestart=true
|
|
priority=10
|
|
stdout_logfile=/dev/stdout
|
|
stderr_logfile=/dev/stderr
|
|
|
|
[program:queue]
|
|
command=php artisan queue:work --sleep=3 --tries=3 --timeout=90
|
|
directory=/app
|
|
autostart=true
|
|
autorestart=true
|
|
priority=20
|
|
stdout_logfile=/dev/stdout
|
|
stderr_logfile=/dev/stderr
|