28 lines
605 B
INI
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
|