How to edit nginx.conf to increase file size upload
Add client_max_body_size Now that you are editing the file you need to add the line into the server block, like so; server { client_max_body_size 8M; //other lines… } If you are hosting multiple sites add it to the http context like so; http { client_max_body_size 8M; //other lines… } And also update the upload_max_filesize in … Read more