From 7c5a9186e2f46cdb687fa75de8af5af9d8702599 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 9ce2102c0..2280b5b02 100644 --- a/sapl/settings.py +++ b/sapl/settings.py @@ -239,9 +239,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/