diff options
Diffstat (limited to 'localsettingswindows.py')
-rw-r--r-- | localsettingswindows.py | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/localsettingswindows.py b/localsettingswindows.py index 110bd36..ed6f486 100644 --- a/localsettingswindows.py +++ b/localsettingswindows.py @@ -9,6 +9,8 @@ DATABASES = { } } +ALLOWED_HOSTS = ['*'] + EXPOUSER = 'expo' EXPOUSERPASS = 'realpasshere' EXPOUSER_EMAIL = 'wookey@wookware.org' @@ -30,7 +32,7 @@ URL_ROOT = 'http://127.0.0.1:8000' DIR_ROOT = ''#this should end in / if a value is given PUBLIC_SITE = False -TINY_MCE_MEDIA_ROOT = '/usr/share/tinymce/www/' +TINY_MCE_MEDIA_ROOT = '/usr/share/tinymce/www/' TINY_MCE_MEDIA_URL = URL_ROOT + DIR_ROOT + 'tinymce_media/' PYTHON_PATH = 'C:\\expoweb\\troggle\\' @@ -56,14 +58,3 @@ EMAIL_USE_TLS = True # URL that handles the media served from MEDIA_ROOT. Make sure to use a # trailing slash if there is a path component (optional in other cases). # Examples: "http://media.lawrence.com", "http://example.com/media/" - - - - -TEMPLATE_DIRS = ( - "C:/Expo/expoweb/troggle/templates", - - # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". - # Always use forward slashes, even on Windows. - # Don't forget to use absolute paths, not relative paths. -) |