From 706fec80fee2bd6d8d4454b212934294f5d854e1 Mon Sep 17 00:00:00 2001 From: Austin Taylor Date: Wed, 5 Apr 2017 13:07:53 -0400 Subject: [PATCH] Allows users to access SCIRIUS by default In Amsterdam's current state, it gives an Internal Server error because there is now ALLOWED_HOSTS in the config file. This adjustment will allow users to access the docker container as soon as it comes up. --- src/config/scirius/local_settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/config/scirius/local_settings.py b/src/config/scirius/local_settings.py index 90e871a..cd5925c 100644 --- a/src/config/scirius/local_settings.py +++ b/src/config/scirius/local_settings.py @@ -1,5 +1,7 @@ import os +ALLOWED_HOSTS = ['*'] + USE_ELASTICSEARCH = True ELASTICSEARCH_ADDRESS = "elasticsearch:9200" ELASTICSEARCH_2X = True