Ve el siguiente error en su navegador cuando intenta cargar un archivo a través de http:
413 Request entity Too Large
Solución
Abra /etc/nginx/nginx.conf...
nano /etc/nginx/nginx.conf
... y agregue client_max_body_size con un valor lo suficientemente grande, por ejemplo:
client_max_body_size 2M;
Reinicie nginx después:
service nginx restart