File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 241241STATIC_URL = '/static/'
242242STATIC_ROOT = os .path .join (BASE_DIR , 'static' )
243243STATICFILES_STORAGE = 'whitenoise.storage.CompressedStaticFilesStorage'
244- DATA_UPLOAD_MAX_MEMORY_SIZE = 256 * 1024 * 1024 # 256MB limit for file uploads
244+ # 256MB limit for file uploads
245+ DATA_UPLOAD_MAX_MEMORY_SIZE = 256 * 1024 * 1024
245246# 400MB per file limit for uncompressed files
246247ZIP_MAX_UNCOMPRESSED_FILE_SIZE = 400 * 1024 * 1024
247- ZIP_MAX_UNCOMPRESSED_TOTAL_SIZE = 3000 * 1024 * \
248- 1024 # 3GB total limit for all uncompressed files
248+ # 3GB total limit for all uncompressed files
249+ ZIP_MAX_UNCOMPRESSED_TOTAL_SIZE = 3000 * 1024 * 1024
249250LOGIN_URL = 'login'
250251LOGOUT_REDIRECT_URL = '/'
251252AUTH_PASSWORD_VALIDATORS = [
You can’t perform that action at this time.
0 commit comments