diff options
author | eliott <eliott@cactuswax.net> | 2008-01-05 17:08:07 -0800 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2008-01-05 17:08:07 -0800 |
commit | 4aee4dd236eace068ea3bf7e9d8e24e5268bb491 (patch) | |
tree | 22c40cb07d7f1e932a91680089911e0db49ba94b /local_settings.py.example | |
parent | ea8a7cb4e3a9efd86773e1ea3c4155901fe0fdb1 (diff) |
subtle changes to settings files
moved cache controls to local_settings
Diffstat (limited to 'local_settings.py.example')
-rw-r--r-- | local_settings.py.example | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/local_settings.py.example b/local_settings.py.example index 031e3b6a..965e07b8 100644 --- a/local_settings.py.example +++ b/local_settings.py.example @@ -20,11 +20,12 @@ ADMINS = ( #DATABASE_HOST = '' #DATABASE_PORT = '' -## Enable/disable caching +## Define cache middleware settings CACHE = False - -## Define a cache backend CACHE_BACKEND = 'file:///tmp/ALdjangocache?timeout=900' +CACHE_MIDDLEWARE_SECONDS = 900 +CACHE_MIDDLEWARE_KEY_PREFIX = 'arch' +CACHE_MIDDLEWARE_ANONYMOUS_ONLY = True ## location for saving dev pictures MEDIA_ROOT = '/var/www/archlinux/htdocs/img/devs/' |