From 6a678815720fe2d30031e0d48bc5f80afb25409e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Albert?= Date: Thu, 21 Jul 2016 13:38:03 +0200 Subject: [PATCH] Increase max body size from nginx With the default client_max_body_size (1M), import cannot be used. Raise the limit to 50M. --- root/etc/nginx/nginx.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/root/etc/nginx/nginx.conf b/root/etc/nginx/nginx.conf index 26f37e2..82a88a8 100644 --- a/root/etc/nginx/nginx.conf +++ b/root/etc/nginx/nginx.conf @@ -23,6 +23,7 @@ http { gzip on; gzip_disable "msie6"; open_file_cache max=100; + client_max_body_size 50M; upstream php-upstream {