chore(docs): add client_max_body_size in nginx example

This commit is contained in:
koralowiec 2024-10-14 17:20:08 +00:00
parent dd87268848
commit 8fdeeaaf38

View File

@ -114,6 +114,11 @@ server
proxy_pass http://<URL_to_forward_to>; proxy_pass http://<URL_to_forward_to>;
proxy_redirect http:// https://; 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;
} }
} }
``` ```