hosting-backend/deploy/supervisord.conf
Alexis Bruneteau 3727e20b98
Some checks failed
Build and Deploy to k3s / build-and-deploy (push) Failing after 29s
tag
2025-06-05 03:47:13 +02:00

18 lines
385 B
Plaintext

[supervisord]
nodaemon=true
[program:php-fpm]
command=/usr/local/sbin/php-fpm
[program:nginx]
command=/usr/sbin/nginx -g "daemon off;"
[program:queue]
directory=/var/www
command=php artisan queue:work --daemon --sleep=3 --tries=1 --timeout=120
autostart=true
autorestart=true
user=www-data
stderr_logfile=/var/log/laravel-queue.err.log
stdout_logfile=/var/log/laravel-queue.out.log