From 968bfc2a3b82e398213ee92c0a3501ba1ea6b4a7 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Fri, 13 Mar 2015 00:08:11 +0100 Subject: [PATCH] increase nginx upload body size --- examples/deploy/nginx-app.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/deploy/nginx-app.conf b/examples/deploy/nginx-app.conf index f1e56dbd..0ebf2388 100644 --- a/examples/deploy/nginx-app.conf +++ b/examples/deploy/nginx-app.conf @@ -9,7 +9,7 @@ server { error_log /var/log/nginx/app-error.log; # max upload size - client_max_body_size 75M; # adjust to taste + client_max_body_size 4096M; # adjust to taste # Django media location /media { -- 2.39.5