From f0bc131cb0cccf616abd13d69741b221f0af40b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Tue, 23 May 2023 14:38:58 +0200 Subject: [PATCH] fix --- conf/extra_php-fpm.conf | 4 ++-- conf/nginx.conf | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/extra_php-fpm.conf b/conf/extra_php-fpm.conf index 017da9e..bf37626 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] = 256M -php_admin_value[post_max_size] = 256M +php_admin_value[upload_max_filesize] = 500M +php_admin_value[post_max_size] = 500M diff --git a/conf/nginx.conf b/conf/nginx.conf index 55fd599..e7fe599 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -12,7 +12,7 @@ location __PATH__/ { } # Common parameter to increase upload size limit in conjunction with dedicated php-fpm file - client_max_body_size 256M; + client_max_body_size 500M; try_files $uri $uri/ index.php;