summaryrefslogtreecommitdiffstats
path: root/settings.py
diff options
context:
space:
mode:
authoreliott <eliott@cactuswax.net>2008-01-05 17:08:07 -0800
committereliott <eliott@cactuswax.net>2008-01-05 17:08:07 -0800
commit4aee4dd236eace068ea3bf7e9d8e24e5268bb491 (patch)
tree22c40cb07d7f1e932a91680089911e0db49ba94b /settings.py
parentea8a7cb4e3a9efd86773e1ea3c4155901fe0fdb1 (diff)
downloadarchweb-4aee4dd236eace068ea3bf7e9d8e24e5268bb491.tar.gz
archweb-4aee4dd236eace068ea3bf7e9d8e24e5268bb491.zip
subtle changes to settings files
moved cache controls to local_settings
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/settings.py b/settings.py
index 84c77fe3..18624adb 100644
--- a/settings.py
+++ b/settings.py
@@ -10,13 +10,6 @@ TEMPLATE_DEBUG = DEBUG
# Set managers to admins
MANAGERS = ADMINS
-## Cache backend settings
-if CACHE == True:
- CACHE_BACKEND = 'file:///tmp/ALdjangocache?timeout=900'
- CACHE_MIDDLEWARE_SECONDS = 900
- CACHE_MIDDLEWARE_KEY_PREFIX = 'arch'
- CACHE_MIDDLEWARE_ANONYMOUS_ONLY = True
-
# Full path to the data directory
DEPLOY_PATH = os.path.dirname(os.path.realpath(__file__))
DATA_DIR = '%s/data' % DEPLOY_PATH