From 978270b152e803f0a8f1fac09363cc9703812567 Mon Sep 17 00:00:00 2001 From: Sam Wenham Date: Fri, 21 Feb 2020 14:25:13 +0000 Subject: Remove dud settings allow any site for dev --- localsettingsserver.py | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'localsettingsserver.py') diff --git a/localsettingsserver.py b/localsettingsserver.py index 259974e..58bc1a9 100644 --- a/localsettingsserver.py +++ b/localsettingsserver.py @@ -1,6 +1,6 @@ import sys # This is an example file. Copy it to localsettings.py, set the -# password and _don't_ check that file back to the repo as it exposes +# password and _don't_ check that file back to the repo as it exposes # your/our password to the world! DATABASES = { @@ -14,6 +14,8 @@ DATABASES = { } } +ALLOWED_HOSTS = ['*'] + EXPOUSER = 'expo' EXPOUSERPASS = 'realpasshere' EXPOUSER_EMAIL = 'wookey@wookware.org' @@ -55,13 +57,6 @@ JSLIB_URL = URL_ROOT + 'javascript/' TINY_MCE_MEDIA_ROOT = STATIC_ROOT + '/tiny_mce/' TINY_MCE_MEDIA_URL = STATIC_ROOT + '/tiny_mce/' -TEMPLATE_DIRS = ( - PYTHON_PATH + "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. -) - LOGFILE = '/home/expo/troggle/troggle_log.txt' FEINCMS_ADMIN_MEDIA='/site_media/feincms/' -- cgit v1.2.3