From 8fdeeaaf385f4e583d8b7e9184ebcc2947ae608f Mon Sep 17 00:00:00 2001 From: koralowiec <36413794+koralowiec@users.noreply.github.com> Date: Mon, 14 Oct 2024 17:20:08 +0000 Subject: [PATCH] chore(docs): add client_max_body_size in nginx example --- readme.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/readme.md b/readme.md index ce2781cc..5cf41342 100644 --- a/readme.md +++ b/readme.md @@ -114,6 +114,11 @@ server proxy_pass http://; proxy_redirect http:// https://; + + # Prevent 413 Request Entity Too Large error + # by increasing the maximum allowed size of the client request body + # For example, set it to 10 GiB + client_max_body_size 10240M; } } ```