diff --git a/conf/extra_php-fpm.conf b/conf/extra_php-fpm.conf index 5cc5dfd..700c37c 100644 --- a/conf/extra_php-fpm.conf +++ b/conf/extra_php-fpm.conf @@ -1,4 +1,4 @@ ; Additional php.ini defines, specific to this pool of workers. -;php_admin_value[upload_max_filesize] = 50M -;php_admin_value[post_max_size] = 50M +php_admin_value[upload_max_filesize] = 50M +php_admin_value[post_max_size] = 50M diff --git a/conf/nginx.conf b/conf/nginx.conf index c97bb9d..b28ef9b 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -7,7 +7,7 @@ location __PATH__/ { index index.php; # Common parameter to increase upload size limit in conjunction with dedicated php-fpm file - client_max_body_size 10M; + client_max_body_size 50M; if (!-e $request_filename) { rewrite ^ __PATH__/index.php last; }