diff -r 03d4200ae809 -r 92b01b214192 src/hdalab/config.py.tmpl --- a/src/hdalab/config.py.tmpl Tue Mar 24 12:16:06 2015 +0100 +++ b/src/hdalab/config.py.tmpl Tue Mar 24 12:24:28 2015 +0100 @@ -57,6 +57,11 @@ # Examples: "http://foo.com/static/admin/", "/static/admin/". ADMIN_MEDIA_PREFIX = STATIC_URL + 'admin/' +# Hosts/domain names that are valid for this site; required if DEBUG is False +# See https://docs.djangoproject.com/en/1.5/ref/settings/#allowed-hosts +ALLOWED_HOSTS = ['localhost', '127.0.0.1'] + + GOOGLE_ANALYTICS_CODE = None LOG_FILE = os.path.abspath(os.path.join(BASE_DIR,"../../run/log/log.txt"))