From 92eaf570cf917f4baea4745651efd621847c4a9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Th=C3=A9riault?= Date: Mon, 25 Nov 2019 10:36:32 -0500 Subject: [PATCH] Include max body size in NGINX config example --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index a5da3ac..fa8fbbf 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,10 @@ server { location / { proxy_pass http://localhost:8080; + + location /f { + client_max_body_size 10M; + } } } ```