Skip to content

Frequently asked questions

vastsa edited this page Jun 15, 2024 · 2 revisions

413 Request Entity Too Large

Nginx Limitation: To resolve this, locate the nginx.conf configuration file on your host. Open the file and add the following line within the http{} block:

client_max_body_size 10m;

After making the change, restart Nginx. This setting increases the maximum allowed size for a client request body to 10MB.

Clone this wiki locally