mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-23 01:22:30 +01:00
58 lines
1.3 KiB
Plaintext
58 lines
1.3 KiB
Plaintext
[supervisord]
|
|
logfile=/dev/stdout
|
|
logfile_maxbytes=0
|
|
loglevel=info
|
|
minfds=1024
|
|
minprocs=200
|
|
nodaemon=true
|
|
pidfile=/dev/null
|
|
|
|
[unix_http_server]
|
|
file=/tmp/supervisor.sock
|
|
|
|
[supervisorctl]
|
|
serverurl=unix:///tmp/supervisor.sock
|
|
|
|
[rpcinterface:supervisor]
|
|
supervisor.rpcinterface_factory=supervisor.rpcinterface:make_main_rpcinterface
|
|
|
|
[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]
|
|
command=/usr/sbin/php-fpm --nodaemonize
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
environment=LOG_CHANNEL="stderr"
|
|
|
|
[program:queue-worker]
|
|
command=/usr/bin/php /var/www/pterodactyl/artisan queue:work --queue=standard --sleep=3 --tries=3
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
environment=LOG_CHANNEL="stderr"
|
|
|
|
[program:yacron]
|
|
command=/usr/local/bin/yacron -c /etc/yacron.yaml
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
environment=LOG_CHANNEL="stderr"
|