diff options
author | Dan McGee <dan@archlinux.org> | 2011-12-05 23:10:11 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-12-05 23:10:11 -0600 |
commit | 09e7d2706e9b15da7d566c6156b68f96dab25320 (patch) | |
tree | e78eebdb4d99a5ff52ec14b0e7aebfb9572dcf20 | |
parent | 943ef2e8e436a32ce5dc956c4d855866cd644cc1 (diff) |
Slight tweaks to default local_settings
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r-- | local_settings.py.example | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/local_settings.py.example b/local_settings.py.example index bad03921..30a67d51 100644 --- a/local_settings.py.example +++ b/local_settings.py.example @@ -2,8 +2,8 @@ ## Debug settings DEBUG = False -TEMPLATE_DEBUG = True -DEBUG_TOOLBAR = True +TEMPLATE_DEBUG = False +#DEBUG_TOOLBAR = True ## For django debug toolbar INTERNAL_IPS = ('127.0.0.1',) @@ -46,7 +46,7 @@ SESSION_COOKIE_SECURE = False MEDIA_ROOT = '/srv/example.com/img/' ## web url for serving image files -MEDIA_URL = 'http://example.com/img/' +MEDIA_URL = '/media/img/' ## Make this unique, and don't share it with anybody. SECRET_KEY = '00000000000000000000000000000000000000000000000' |