mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-13 02:26:31 +08:00
6d51b673fc
Signed-off-by: Simon L. <szaimen@e.mail.de>
64 lines
1.5 KiB
Text
64 lines
1.5 KiB
Text
[supervisord]
|
|
nodaemon=true
|
|
logfile=/var/log/supervisord/supervisord.log
|
|
pidfile=/var/run/supervisord/supervisord.pid
|
|
childlogdir=/var/log/supervisord/
|
|
logfile_maxbytes=50MB
|
|
logfile_backups=10
|
|
loglevel=error
|
|
user=root
|
|
|
|
[program:php-fpm]
|
|
# Stdout logging is disabled as otherwise the logs are spammed
|
|
stdout_logfile=NONE
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
command=php-fpm
|
|
user=root
|
|
|
|
[program:apache]
|
|
# Stdout logging is disabled as otherwise the logs are spammed
|
|
stdout_logfile=NONE
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
command=httpd -DFOREGROUND
|
|
user=root
|
|
|
|
[program:caddy]
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
command=/usr/bin/caddy run --config /Caddyfile
|
|
user=www-data
|
|
|
|
[program:cron]
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
command=/cron.sh
|
|
user=root
|
|
|
|
[program:backup-time-file-watcher]
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
command=/backup-time-file-watcher.sh
|
|
user=root
|
|
|
|
[program:session-deduplicator]
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
command=/session-deduplicator.sh
|
|
user=root
|
|
|
|
[program:domain-validator]
|
|
# Logging is disabled as otherwise all attempts will be logged which spams the logs
|
|
stdout_logfile=NONE
|
|
stderr_logfile=NONE
|
|
command=php -S 127.0.0.1:9876 /var/www/docker-aio/php/domain-validator.php
|
|
user=www-data
|