From e7fcb4ef3571e7cbcfb0b239e64f8e09e827fd20 Mon Sep 17 00:00:00 2001 From: nakazawakan Date: Wed, 26 Jan 2022 10:27:18 -0600 Subject: [PATCH] =?UTF-8?q?=E6=9C=AC=E7=95=AA=E3=81=8C=E7=A8=BC=E5=83=8D?= =?UTF-8?q?=E3=81=99=E3=82=8B=E3=81=8B=E3=83=86=E3=82=B9=E3=83=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose.yml | 2 +- infra/php/php.ini | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 2f135509..017da64f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,7 +3,7 @@ services: app: build: ./infra/php volumes: - - ./infra/php/php.ini:/usr/local/etc/php/php.ini + # - ./infra/php/php.ini:/usr/local/etc/php/php.ini - ./backend:/work web: diff --git a/infra/php/php.ini b/infra/php/php.ini index f478e088..369cc436 100644 --- a/infra/php/php.ini +++ b/infra/php/php.ini @@ -2,9 +2,9 @@ zend.exception_ignore_args = off expose_php = on max_execution_time=9999999 max_input_vars = 1000 -upload_max_filesize = -1 -post_max_size = -1 -memory_limit = -1 +upload_max_filesize = 999999 +post_max_size = 999999 +memory_limit = 999999 error_reporting = E_ALL display_errors = on display_startup_errors = on