Answers for "laravel 413 Request Entity Too Large"

5

413 Request Entity Too Large

#open terminal and type
sudo nano /etc/nginx/nginx.conf
#go to http block
http {
	...
    #add this line
    client_max_body_size 100M;
    ...
}
Posted by: Guest on August-02-2021
3

413 error laravel

// Need to increase or set client_max_body_size in your nginx config file. 
http {
    #...
        client_max_body_size 100m;
    #...
}
// Restart nginx
Posted by: Guest on December-16-2020

Code answers related to "laravel 413 Request Entity Too Large"

Browse Popular Code Answers by Language