Merge pull request #1482 from nextcloud/enh/noid/apache-use-stderr

Print apache errors in the future to stderr
This commit is contained in:
Simon L
2022-12-05 15:21:45 +01:00
committed by GitHub
2 changed files with 4 additions and 4 deletions

View File

@@ -3,8 +3,8 @@ Listen 8000
ServerName localhost
# Add error log
CustomLog ${APACHE_LOG_DIR}/access.log combined
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog /proc/self/fd/1 combined
ErrorLog /proc/self/fd/2
# PHP match
<FilesMatch "\.php$">

View File

@@ -9,8 +9,8 @@ logfile_backups=10
loglevel=error
[program:apache]
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
# stdout_logfile=/dev/stdout
# stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
command=apachectl -DFOREGROUND