From 91e44da5992a2acffd02f2df707e313099f82b49 Mon Sep 17 00:00:00 2001 From: Ishankoradia Date: Sat, 16 Mar 2024 14:48:17 +0530 Subject: [PATCH] allowed hosts --- llm/settings.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/llm/settings.py b/llm/settings.py index 044b684..000803f 100644 --- a/llm/settings.py +++ b/llm/settings.py @@ -34,7 +34,11 @@ # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True -ALLOWED_HOSTS = [] +ALLOWED_HOSTS = [ + "openllm.projecttech4dev.org", + "localhost", + "127.0.0.1", +] # Application definition