hosting-backend/deploy/supervisord.conf
Alexis Bruneteau a01337425c
Some checks failed
Build and Deploy to k3s / build-and-deploy (push) Failing after 31s
tag
2025-06-05 06:06:27 +02:00

21 lines
441 B
Plaintext

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