From fd310d301f6b28a9e6ffb181a1c60ae3d35ca21c Mon Sep 17 00:00:00 2001 From: Edward Ribeiro Date: Thu, 24 Oct 2019 09:14:21 -0300 Subject: [PATCH] HOT-FIX: aumenta tamanho de upload de documentos --- sapl/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sapl/settings.py b/sapl/settings.py index e33e5c03a..78ff35d4f 100644 --- a/sapl/settings.py +++ b/sapl/settings.py @@ -263,9 +263,9 @@ DEFAULT_FROM_EMAIL = config('DEFAULT_FROM_EMAIL', cast=str, default='') SERVER_EMAIL = config('SERVER_EMAIL', cast=str, default='') EMAIL_RUNNING = None -MAX_DOC_UPLOAD_SIZE = 80 * 1024 * 1024 # 80MB +MAX_DOC_UPLOAD_SIZE = 150 * 1024 * 1024 # 150MB MAX_IMAGE_UPLOAD_SIZE = 2 * 1024 * 1024 # 2MB -DATA_UPLOAD_MAX_MEMORY_SIZE= 10 * 1024 * 1024 # 10MB +DATA_UPLOAD_MAX_MEMORY_SIZE= 10 * 1024 * 1024 # 10MB # Internationalization # https://docs.djangoproject.com/en/1.8/topics/i18n/