From 9ecac37e9e50fd79115b325cfb37b0da1cd20520 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Fri, 16 Jan 2009 22:11:57 +0100 Subject: [PATCH] Set INTERNAL_IPS to 127.0.0.1. This makes the debug context processor actually set debug to True, which finally makes the local/remote CSS work as expected. --- settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/settings.py b/settings.py index 4848651..5ed30bf 100644 --- a/settings.py +++ b/settings.py @@ -117,6 +117,8 @@ AUTH_PROFILE_MODULE = 'base.UserProfile' # Max length for comments, in characters. DEFAULT_MAX_COMMENT_LENGTH = 3000 +INTERNAL_IPS = ('127.0.0.1') + # Import local settings, that are specific to this installation. These # can override any settings specified here. try: -- 2.30.2