misc_pterodactyl-panel/.github/docker/supervisord.conf

58 lines
1.3 KiB
Text
Raw Normal View History

2022-11-27 19:34:31 +00:00
[supervisord]
logfile=/dev/stdout
logfile_maxbytes=0
loglevel=info
minfds=1024
minprocs=200
nodaemon=true
pidfile=/dev/null
[unix_http_server]
2022-11-27 19:34:31 +00:00
file=/tmp/supervisor.sock
2022-11-27 19:34:31 +00:00
[supervisorctl]
serverurl=unix:///tmp/supervisor.sock
[rpcinterface:supervisor]
2022-11-27 19:34:31 +00:00
supervisor.rpcinterface_factory=supervisor.rpcinterface:make_main_rpcinterface
2022-11-27 19:34:31 +00:00
[program:caddy]
command=/usr/local/bin/caddy run --config /etc/caddy/Caddyfile
autostart=true
autorestart=true
priority=10
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
[program:php-fpm]
2022-11-27 19:34:31 +00:00
command=/usr/sbin/php-fpm --nodaemonize
autostart=true
autorestart=true
2022-11-27 19:34:31 +00:00
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
environment=LOG_CHANNEL="stderr"
[program:queue-worker]
2022-11-27 19:34:31 +00:00
command=/usr/bin/php /var/www/pterodactyl/artisan queue:work --queue=standard --sleep=3 --tries=3
autostart=true
autorestart=true
2022-11-27 19:34:31 +00:00
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
environment=LOG_CHANNEL="stderr"
2022-11-27 19:34:31 +00:00
[program:yacron]
command=/usr/local/bin/yacron -c /etc/yacron.yaml
autostart=true
autorestart=true
2022-11-27 19:34:31 +00:00
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
environment=LOG_CHANNEL="stderr"