1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/yeswiki_ynh.git synced 2024-09-03 18:05:56 +02:00

Set HTTP post/file max size to 500M

Previous value was default of 20M, which is too small for some PDF or
image files.

Signed-off-by: Nils VAN ZUIJLEN <nils.van-zuijlen@mailo.com>
This commit is contained in:
Nils VAN ZUIJLEN 2021-05-19 10:52:34 +02:00
parent 966b9a23ce
commit c3a116853b
No known key found for this signature in database
GPG key ID: 7BE7AF8A0F5942E9
2 changed files with 3 additions and 3 deletions

View file

@ -12,7 +12,7 @@ location __PATH__/ {
index 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 500M;
try_files $uri $uri/ index.php;
location ~ [^/]\.php(/|$) {

View file

@ -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] = 500M
php_admin_value[post_max_size] = 500M
; php_admin_flag[mail.add_x_header] = Off
; Other common parameters