server-php: - Add nginx.conf, fpm-pool.conf.template, supervisord.conf - Add php.ini.template, php-prod.ini, php-dev.ini - Add opcache-prod.ini, xdebug.ini - Add nginx-performance.conf for production - Add entrypoint.sh script developer: - Remove git-delta (not available in Alpine 3.22 repos) Closes #3 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
11 lines
230 B
INI
11 lines
230 B
INI
; Development PHP settings
|
|
display_errors = On
|
|
display_startup_errors = On
|
|
error_reporting = E_ALL
|
|
log_errors = On
|
|
|
|
memory_limit = 512M
|
|
max_execution_time = 300
|
|
max_input_time = 300
|
|
post_max_size = 128M
|
|
upload_max_filesize = 128M
|