mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-21 02:40:09 +00:00
Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/6e288352-eba8-4697-978e-d0b11349fe3f Co-authored-by: szaimen <42591237+szaimen@users.noreply.github.com>
23 lines
680 B
Plaintext
23 lines
680 B
Plaintext
[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=%(ENV_AIO_LOG_LEVEL)s
|
|
|
|
[program:apache]
|
|
# Stdout logging is disabled as otherwise the logs are spammed
|
|
stdout_logfile=%(ENV_SUPERVISORD_STDOUT)s
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
command=httpd -DFOREGROUND
|
|
|
|
[program:caddy]
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
command=/usr/bin/caddy run --config /tmp/Caddyfile
|