All posts tagged upload

Nginx request entity too large

If you’re getting 413 Request Entity Too Large errors trying to upload with nginx.net/, you need to increase the size limit in nginx.conf . Add ‘client_max_body_size xxM’ inside the server section, where xx is the size (in megabytes) that you want to allow. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 . . . Read more