413 request entity too large nginx
1.Edit nginx conf file
$ sudo nano /etc/nginx/nginx.conf
#add following code in the http section:
http {
client_max_body_size 100M;
}
2. Edit php.ini file
$ sudo nano /etc/php/8.0/php.ini
#Update following varaibles' values:
max_input_time = 12000
max_execution_time = 12000
upload_max_filesize = 6000M
post_max_size = 12000M
memory_limit = 6000M
3. Restart nginx
$ sudo service nginx restart