diff --git a/nginx/nginx.conf b/nginx/nginx.conf index a9ecf0e..9514032 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -24,6 +24,9 @@ http { include /etc/nginx/conf.d/*.conf; include /etc/nginx/sites-enabled/*; open_file_cache max=100; + client_body_temp_path /tmp 1 2; + client_body_buffer_size 256k; + client_body_in_file_only off; } daemon off; diff --git a/php-fpm/Dockerfile b/php-fpm/Dockerfile index 10d0c55..f4ed60e 100644 --- a/php-fpm/Dockerfile +++ b/php-fpm/Dockerfile @@ -14,6 +14,7 @@ RUN apk add --update \ php7-json \ php7-intl \ php7-mcrypt \ + php7-fileinfo\ php7-mbstring \ php7-opcache \ php7-openssl \