2021-11-30 11:20:42 +01:00
|
|
|
# From https://github.com/nextcloud/docker/blob/master/.examples/dockerfiles/full/fpm/supervisord.conf
|
|
|
|
|
[supervisord]
|
|
|
|
|
nodaemon=true
|
|
|
|
|
logfile=/var/log/supervisord/supervisord.log
|
|
|
|
|
pidfile=/var/run/supervisord/supervisord.pid
|
|
|
|
|
childlogdir=/var/log/supervisord/
|
|
|
|
|
logfile_maxbytes=50MB ; maximum size of logfile before rotation
|
|
|
|
|
logfile_backups=10 ; number of backed up logfiles
|
|
|
|
|
loglevel=error
|
2022-10-30 02:02:46 +02:00
|
|
|
user=root
|
2021-11-30 11:20:42 +01:00
|
|
|
|
|
|
|
|
[program:php-fpm]
|
|
|
|
|
stdout_logfile=/dev/stdout
|
|
|
|
|
stdout_logfile_maxbytes=0
|
2022-12-05 10:19:55 +01:00
|
|
|
stderr_logfile=/dev/stderr
|
|
|
|
|
stderr_logfile_maxbytes=0
|
2021-11-30 11:20:42 +01:00
|
|
|
command=php-fpm
|
2022-10-30 02:02:46 +02:00
|
|
|
user=root
|
2021-11-30 11:20:42 +01:00
|
|
|
|
|
|
|
|
[program:cron]
|
|
|
|
|
stdout_logfile=/dev/stdout
|
|
|
|
|
stdout_logfile_maxbytes=0
|
|
|
|
|
stderr_logfile=/dev/stderr
|
|
|
|
|
stderr_logfile_maxbytes=0
|
|
|
|
|
command=/cron.sh
|
2022-10-27 18:23:16 +02:00
|
|
|
user=www-data
|
2021-11-30 11:20:42 +01:00
|
|
|
|
2023-05-01 18:37:33 +02:00
|
|
|
[program:run-exec-commands]
|
2022-04-06 21:14:41 +02:00
|
|
|
stdout_logfile=/dev/stdout
|
|
|
|
|
stdout_logfile_maxbytes=0
|
|
|
|
|
stderr_logfile=/dev/stderr
|
|
|
|
|
stderr_logfile_maxbytes=0
|
2023-05-01 18:37:33 +02:00
|
|
|
command=/run-exec-commands.sh
|
2022-10-27 18:23:16 +02:00
|
|
|
user=www-data
|