X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/d8ab85f46f94d8ea27487303797637ebc955ce68..0bd53bfd0a08e9949651ec35bf22048db8e740d9:/settings.py?ds=sidebyside diff --git a/settings.py b/settings.py index f42268b..cd153f4 100644 --- a/settings.py +++ b/settings.py @@ -7,12 +7,7 @@ SITE_ID = 1 ADMIN_MEDIA_PREFIX = '/admin_media/' SECRET_KEY = '$oo^&_m&qwbib=(_4m_n*zn-d=g#s0he5fx9xonnym#8p6yigm' -TEMPLATE_LOADERS = [ - 'django.template.loaders.filesystem.load_template_source', - 'django.template.loaders.app_directories.load_template_source', - 'forum.modules.template_loader.module_templates_loader', - 'forum.skins.load_template_source', -] +CACHE_MAX_KEY_LENGTH = 235 MIDDLEWARE_CLASSES = [ 'django.middleware.csrf.CsrfViewMiddleware', @@ -56,6 +51,23 @@ ALLOW_MAX_FILE_SIZE = 1024 * 1024 # User settings from settings_local import * +if DEBUG: + TEMPLATE_LOADERS = [ + 'django.template.loaders.filesystem.load_template_source', + 'django.template.loaders.app_directories.load_template_source', + 'forum.modules.template_loader.module_templates_loader', + 'forum.skins.load_template_source', + ] +else: + TEMPLATE_LOADERS = [ + ('django.template.loaders.cached.Loader',( + 'django.template.loaders.filesystem.load_template_source', + 'django.template.loaders.app_directories.load_template_source', + 'forum.modules.template_loader.module_templates_loader', + 'forum.skins.load_template_source', + )), + ] + try: if len(FORUM_SCRIPT_ALIAS) > 0: APP_URL = '%s/%s' % (APP_URL, FORUM_SCRIPT_ALIAS[:-1]) @@ -123,6 +135,13 @@ try: except: pass +# Try loading Gunicorn web server +try: + import gunicorn + INSTALLED_APPS.append('gunicorn') +except ImportError: + pass + if not DEBUG: try: import rosetta