Compare commits

...

2 commits

Author SHA1 Message Date
Thorsten Bus db15a71378 fix: pipe PHP/FPM errors to stderr for docker compose logs 2026-03-30 19:06:45 +02:00
Thorsten Bus 843553b743 change permission of gitignore files 2026-03-30 19:05:08 +02:00
14 changed files with 12 additions and 0 deletions

0
bootstrap/cache/.gitignore vendored Normal file → Executable file
View file

View file

@ -30,6 +30,8 @@ COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
WORKDIR /app
COPY build/fpm-healthcheck.conf /usr/local/etc/php-fpm.d/zz-healthcheck.conf
COPY build/php-error-logging.conf /usr/local/etc/php-fpm.d/zz-error-logging.conf
COPY build/php-errors.ini /usr/local/etc/php/conf.d/errors.ini
EXPOSE 9000

View file

@ -0,0 +1,5 @@
[www]
catch_workers_output = yes
decorate_workers_output = no
php_admin_flag[log_errors] = on
php_admin_value[error_log] = /proc/self/fd/2

5
build/php-errors.ini Normal file
View file

@ -0,0 +1,5 @@
log_errors = On
error_log = /proc/self/fd/2
error_reporting = E_ALL
display_errors = Off
display_startup_errors = On

0
storage/app/.gitignore vendored Normal file → Executable file
View file

0
storage/app/private/.gitignore vendored Normal file → Executable file
View file

0
storage/app/public/.gitignore vendored Normal file → Executable file
View file

0
storage/framework/.gitignore vendored Normal file → Executable file
View file

0
storage/framework/cache/.gitignore vendored Normal file → Executable file
View file

0
storage/framework/cache/data/.gitignore vendored Normal file → Executable file
View file

0
storage/framework/sessions/.gitignore vendored Normal file → Executable file
View file

0
storage/framework/testing/.gitignore vendored Normal file → Executable file
View file

0
storage/framework/views/.gitignore vendored Normal file → Executable file
View file

0
storage/logs/.gitignore vendored Normal file → Executable file
View file