userdir: increase upload size limit

This commit is contained in:
Lyn Fugmann 2023-11-28 18:34:51 +01:00
parent 549fffcab2
commit 964183a0e7
Signed by: fugi
GPG key ID: 4472A20091BFA792

View file

@ -54,6 +54,8 @@ in
phpPackage = pkgs.php.buildEnv {
extraConfig = ''
display_errors=0
post_max_size = 40M
upload_max_filesize = 40M
'';
};
};
@ -67,6 +69,7 @@ in
extraConfig = ''
proxy_intercept_errors on;
error_page 403 404 =404 /404.html;
client_max_body_size 40M;
'';
};
};