From 65dc4d27bcfc990cc5e24a2a83e63b655da2e296 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sun, 25 Jul 2021 15:00:12 +0200 Subject: [PATCH] Fix --- conf/nginx.conf | 2 +- conf/php-fpm.conf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 8da567c..d8f0c54 100755 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -12,7 +12,7 @@ location __PATH__/ { index index.html index.php; # Common parameter to increase upload size limit in conjunction with dedicated php-fpm file - #client_max_body_size 50M; + client_max_body_size 100M; #try_files $uri /index.php?$args; try_files $uri $uri/ @__APP__; diff --git a/conf/php-fpm.conf b/conf/php-fpm.conf index ab1a471..676c75d 100755 --- 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] = 50M -; php_admin_value[post_max_size] = 50M +php_admin_value[upload_max_filesize] = 100M +php_admin_value[post_max_size] = 100M ; php_admin_flag[mail.add_x_header] = Off ; Other common parameters