Commit f30daa7c authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

Docker : correction de la conf PHP pour xdebug v3 qui est désormais celle...

Docker : correction de la conf PHP pour xdebug v3 qui est désormais celle installée dans l'image Unicaen.
parent 6d7e8e81
Loading
Loading
Loading
Loading
+8 −5
Original line number Diff line number Diff line
date.timezone = Europe/Paris

xdebug.enable = 1
xdebug.remote_enable = 1
xdebug.remote_connect_back = 1
xdebug.profiler_enable_trigger = 1
# Xdebug v3
xdebug.mode = develop,debug
xdebug.client_host = localhost
xdebug.client_port = 9003
xdebug.start_with_request = yes
xdebug.remote_handler = dbgp
xdebug.discover_client_host = true
xdebug.var_display_max_children = 1024
xdebug.var_display_max_data = -1
xdebug.max_nesting_level = 256
# Attention: trop diminuer 'max_nesting_level' peut causer une erreur 'Maximum function nesting level of x reached'
#xdebug.collect_params = 4
 No newline at end of file
+8 −26
Original line number Diff line number Diff line
@@ -17,33 +17,15 @@ memory_limit = 2048M
upload_max_filesize = 501M
post_max_size       = 502M


;opcache.error_log=/var/log/php_opcache_error.log
;opcache.enable = 0
;opcache.memory_consumption = 256
;opcache.interned_strings_buffer = 8
;opcache.max_wasted_percentage = 5
;opcache.max_accelerated_files = 16000
;; http://php.net/manual/en/opcache.configuration.php#ini.opcache.revalidate-freq
;; defaults to zend opcache checking every 180 seconds for PHP file changes
;; set to zero to check every second if you are doing alot of frequent
;; php file edits/developer work
;; opcache.revalidate_freq=0
;opcache.revalidate_freq = 180
;opcache.fast_shutdown = 0
;opcache.enable_cli = 0
;opcache.save_comments = 1
;opcache.enable_file_override = 1
;opcache.validate_timestamps = 1
;opcache.huge_code_pages = 0


xdebug.enable = 1
xdebug.remote_enable = 1
xdebug.remote_connect_back = 1
xdebug.profiler_enable_trigger = 1
# Xdebug v3
xdebug.mode = develop,debug
xdebug.client_host = localhost
xdebug.client_port = 9003
xdebug.start_with_request = yes
xdebug.remote_handler = dbgp
xdebug.discover_client_host = true
xdebug.var_display_max_children = 1024
xdebug.var_display_max_data = -1
xdebug.max_nesting_level = 256
# Attention: trop diminuer 'max_nesting_level' peut causer une erreur 'Maximum function nesting level of x reached'
#xdebug.collect_params = 4