From caa32c5bae3d7ce788d4c422327614df2a961d41 Mon Sep 17 00:00:00 2001 From: "S. Neuhaus" Date: Wed, 13 Nov 2024 11:33:27 +0100 Subject: [PATCH] Mention HTTP error 413 in FAQ (#2226) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ffb04ded..c1fcd6dc 100644 --- a/README.md +++ b/README.md @@ -416,7 +416,7 @@ For API usage, you must provide a header with `X-API-Key` and the associated API - Multi-page layout (stitch PDF pages together) support x rows y columns and custom page sizing - Fill forms manually or automatically -### Q2: Why is my application downloading .htm files? +### Q2: Why is my application downloading .htm files? Why am i getting HTTP error 413? This is an issue commonly caused by your NGINX configuration. The default file upload size for NGINX is 1MB. You need to add the following in your Nginx sites-available file: `client_max_body_size SIZE;` (where "SIZE" is 50M for example for 50MB files).