diff --git a/mayan/settings/production.py b/mayan/settings/production.py index fbb5cbf4cd..aae3cd3988 100644 --- a/mayan/settings/production.py +++ b/mayan/settings/production.py @@ -7,3 +7,12 @@ DEBUG = False # Update this accordingly; # https://docs.djangoproject.com/en/dev/ref/settings/#allowed-hosts ALLOWED_HOSTS = ['*'] + +TEMPLATE_LOADERS = ( + ('django.template.loaders.cached.Loader', ( + 'django.template.loaders.filesystem.Loader', + 'django.template.loaders.app_directories.Loader', + )), +) + +CELERY_ALWAYS_EAGER = False