Skip to content

Commit

Permalink
Include rsyslog for local syslogger (#202)
Browse files Browse the repository at this point in the history
* Include rsyslog for local syslogger
* Update Dockerfile
  • Loading branch information
cudeso authored Jan 12, 2025
1 parent 3d9729d commit 9a58520
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,8 @@ FROM php-base
gpg-agent \
mariadb-client \
rsync \
# Include rsyslog to support syslogger
rsyslog \
# PHP Requirements
php8.2 \
php8.2-apcu \
Expand Down
9 changes: 9 additions & 0 deletions core/files/etc/supervisor/conf.d/10-supervisor.conf
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,12 @@ stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0

[program:rsyslog]
command=/usr/sbin/rsyslogd -n
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
autostart=true
autorestart=true

0 comments on commit 9a58520

Please sign in to comment.