mirror of
https://github.com/jkaninda/laravel-php-fpm.git
synced 2025-12-08 09:39:39 +01:00
20 lines
380 B
Plaintext
20 lines
380 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
user=root
|
|
logfile=/var/log/supervisor/supervisord.log
|
|
pidfile=/var/run/supervisord.pid
|
|
|
|
|
|
[program:php-fpm]
|
|
command=/usr/local/sbin/php-fpm
|
|
numprocs=1
|
|
autostart=true
|
|
autorestart=true
|
|
stderr_logfile=/var/log/php-fpm_consumer.err.log
|
|
stdout_logfile=/var/log/php-fpm_consumer.out.log
|
|
user=root
|
|
priority=100
|
|
|
|
|
|
[include]
|
|
files = /etc/supervisor/conf.d/*.conf |