diff --git a/.docker/Dockerfile b/.docker/Dockerfile index d2c9157..66e0646 100755 --- a/.docker/Dockerfile +++ b/.docker/Dockerfile @@ -51,7 +51,6 @@ RUN apt-get update \ #---------------------------------------------------------------------- # Install Apache, PHP and its extensions -# TODO : php8.3-pcntl ? #---------------------------------------------------------------------- RUN apt-get update \ && apt-get install --no-install-recommends -y \ diff --git a/.docker/php.ini b/.docker/php.ini index c5ed415..7bb6346 100755 --- a/.docker/php.ini +++ b/.docker/php.ini @@ -1,7 +1,7 @@ ; config/php.ini date.timezone = Europe/Paris -# hide php version +; hide php version expose_php = off opcache.enable = 1 @@ -10,7 +10,7 @@ opcache.memory_consumption = 128 opcache.revalidate_freq = 0 apc.enable_cli = On -# in order to allow large file uploads +; in order to allow large file uploads upload_max_filesize = 300M post_max_size = 300M max_input_time = 600 @@ -23,5 +23,12 @@ realpath_cache_ttl=7200 display_errors = Off display_startup_errors = Off -# to avoid problems with symfony +; to avoid problems with symfony variables_order = "EGPCS" + +; Set xdebug autostart to false +xdebug.remote_autostart=0 +xdebug.remote_enable=0 + +; Disable your profiler +xdebug.profiler_enable=0