Answers for "413 request entity too large homestead"

8

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
0

413 Request Entity Too Large

server {
          ...
          client_max_body_size 64M;
}
Posted by: Guest on June-01-2022

Code answers related to "413 request entity too large homestead"

Browse Popular Code Answers by Language