diff --git a/conf/nginx.conf b/conf/nginx.conf index ce1c088..740cd99 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -13,7 +13,7 @@ location __PATH__/ { index example-singleServer-full.html index.php; # Common parameter to increase upload size limit in conjunction with dedicated php-fpm file - client_max_body_size 500M; + client_max_body_size 1G; try_files $uri $uri/ /index.php; location ~ [^/]\.php(/|$) { diff --git a/conf/php-fpm.conf b/conf/php-fpm.conf index 573704e..120b431 100644 --- a/conf/php-fpm.conf +++ b/conf/php-fpm.conf @@ -419,8 +419,8 @@ chdir = __FINALPATH__ ;php_admin_value[memory_limit] = 32M ; Common values to change to increase file upload limit -php_admin_value[upload_max_filesize] = 500M -php_admin_value[post_max_size] = 500M +php_admin_value[upload_max_filesize] = 1G +php_admin_value[post_max_size] = 1G ; php_admin_flag[mail.add_x_header] = Off ; Other common parameters