1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/lychee_ynh.git synced 2024-09-03 19:36:36 +02:00
This commit is contained in:
Éric Gaspar 2023-08-11 11:35:43 +02:00
parent becbf21b57
commit 1dcf34aab0
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
; Additional php.ini defines, specific to this pool of workers.
php_admin_value[upload_max_filesize] = 512M
php_admin_value[post_max_size] = 512M
php_admin_value[upload_max_filesize] = 1G
php_admin_value[post_max_size] = 1G

View file

@ -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 512M;
client_max_body_size 1G;
try_files $uri $uri/ __PATH__/__PATH__/index.php?$query_string;