9951 explained code solutions for 126 technologies


nginxIncrease max upload file size


server {
  client_max_body_size 2G;
}ctrl + c
server {

virtual server configuration block

client_max_body_size

this directive sets allowed size for a client request body (including upload file size)

2G

allow uploading up to 2G files