Files
landing-api/docker/php.prod.ini
T
leonm b7079e1e42
CD / 🚀 Déploiement production (push) Failing after 48s
CI / 🧪 Tests Laravel (PHP 8.3) (push) Failing after 1m41s
feat: ci/cd
2026-07-10 14:46:58 +02:00

28 lines
605 B
INI

; Configuration PHP optimisée pour la production
[PHP]
; Sécurité
expose_php = Off
display_errors = Off
display_startup_errors = Off
log_errors = On
error_log = /var/www/html/storage/logs/php-errors.log
; Performance
memory_limit = 256M
max_execution_time = 60
max_input_time = 60
post_max_size = 50M
upload_max_filesize = 50M
; OPcache
opcache.enable = 1
opcache.enable_cli = 0
opcache.memory_consumption = 128
opcache.interned_strings_buffer = 16
opcache.max_accelerated_files = 10000
opcache.revalidate_freq = 0
opcache.validate_timestamps = 0
opcache.save_comments = 1
opcache.fast_shutdown = 1