xxxxxxxxxx
n the opened “/etc/nginx/nginx.conf” file, look for the line assigning the value to the “client_max_body_size” variable in the “http {}” section. You can add the “client_max_body_size” value manually if you cannot find it in the configuration file.
For instance, we will increase the size limit of the file limit in Nginx to “200M“.
http {
client_max_body_size 200M;
}