mirror of
https://github.com/tips-of-mine/gestion-certificats2.git
synced 2025-06-28 00:08:43 +02:00
32 lines
676 B
INI
32 lines
676 B
INI
; Configuration PHP pour le développement
|
|
|
|
; Affichage des erreurs activé
|
|
display_errors = On
|
|
display_startup_errors = On
|
|
error_reporting = E_ALL
|
|
|
|
; Log des erreurs
|
|
log_errors = On
|
|
error_log = /var/log/app/php_error.log
|
|
|
|
; Temps d'exécution et mémoire
|
|
max_execution_time = 300
|
|
memory_limit = 512M
|
|
|
|
; Upload
|
|
upload_max_filesize = 128M
|
|
post_max_size = 128M
|
|
|
|
; Timezone
|
|
date.timezone = Europe/Paris
|
|
|
|
; Opcache (optimisé pour le développement)
|
|
opcache.enable = 1
|
|
opcache.revalidate_freq = 0
|
|
opcache.validate_timestamps = 1
|
|
|
|
; Xdebug configuration
|
|
xdebug.mode = develop,debug
|
|
xdebug.start_with_request = yes
|
|
xdebug.client_host = host.docker.internal
|
|
xdebug.client_port = 9003 |