1
0
Fork 0
This repository has been archived on 2025-01-12. You can view files and clone it, but cannot push or open issues or pull requests.
pterodactyl-panel-docker/services/php/supervisord.conf

28 lines
551 B
Text
Raw Normal View History

2017-12-23 15:11:21 -08:00
[supervisord]
nodaemon=true
2019-07-29 04:34:54 +02:00
user=root
2017-12-23 15:11:21 -08:00
[program:cron]
process_name=%(program_name)s
command=crond -f
autostart=true
autorestart=true
user=root
[program:laravel-worker]
process_name=%(program_name)s_%(process_num)02d
2019-07-29 04:34:54 +02:00
command=php /var/www/html/pterodactyl/artisan queue:work --queue=high,standard,low --sleep=3 --tries=3
2017-12-23 15:11:21 -08:00
autostart=true
autorestart=true
2018-02-17 21:55:50 -08:00
user=pterodactyl
2017-12-23 15:11:21 -08:00
numprocs=8
redirect_stderr=true
stdout_logfile=/var/log/pterodactyl/worker.log
[program:php]
process_name=%(program_name)s
command=php-fpm
autostart=true
autorestart=true
user=root