From cb27d16eba729cb3bb061777b6260b53d4bec1aa Mon Sep 17 00:00:00 2001 From: krzywon Date: Tue, 12 Nov 2024 15:50:46 -0500 Subject: [PATCH] Include localhost as an allowed host --- sasmarket/settings.py.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sasmarket/settings.py.example b/sasmarket/settings.py.example index 625b18e..2d7873f 100644 --- a/sasmarket/settings.py.example +++ b/sasmarket/settings.py.example @@ -25,7 +25,7 @@ SECRET_KEY = '^p2hf7r33$&(uo@i#y&y8!l4k8-jl2e6amva6)3!!q#ts_41o)' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True -ALLOWED_HOSTS = ['127.0.0.1'] +ALLOWED_HOSTS = ['127.0.0.1', 'localhost'] # Application definition