From e6826b4de165925ee73f3bbedf1e36b24a254162 Mon Sep 17 00:00:00 2001 From: marvzhang Date: Wed, 4 Mar 2020 14:33:41 +0800 Subject: [PATCH] fixed https://github.com/crawlab-team/crawlab/issues/616 --- nginx/crawlab.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/nginx/crawlab.conf b/nginx/crawlab.conf index fe911819..36c9f2b1 100644 --- a/nginx/crawlab.conf +++ b/nginx/crawlab.conf @@ -13,5 +13,6 @@ server { location /api/ { rewrite /api/(.*) /$1 break; proxy_pass http://localhost:8000/; + client_max_body_size 50m; } }