Files
ntspi-app/_docker/supervisor/supervisord.conf
T
2026-03-20 21:47:02 +05:00

25 lines
675 B
Plaintext
Executable File

[supervisord]
nodaemon=true
logfile=/var/www/storage/logs/supervisord.log
pidfile=/var/run/supervisord.pid
[program:php-fpm]
command=/usr/local/sbin/php-fpm
autostart=true
autorestart=true
stderr_logfile=/var/www/storage/logs/php-fpm.err.log
stdout_logfile=/var/www/storage/logs/php-fpm.out.log
[program:inertia-ssr]
command=php /var/www/artisan inertia:start-ssr
autostart=true
autorestart=true
stderr_logfile=/var/www/storage/logs/inertia-ssr.err.log
stdout_logfile=/var/www/storage/logs/inertia-ssr.out.log
[program:cron]
command=cron -f
autostart=true
autorestart=true
stderr_logfile=/var/www/storage/logs/cron.err.log
stdout_logfile=/var/www/storage/logs/cron.out.log