Print
Parent Category: Troubleshooting
Hits: 2389

In this tutorial I'll show you how you can fix the Nginx 413 Request Entity Too Large error.

The nginx logs shows this: [error] 625#0: *32 client intended to send too large body

The error refers to a line in the nginx.conf file, the client_max_body_size value, wich must be raised  :

server {
listen   xxx.xxx.xxx.xxx:80;
client_max_body_size 50M;