Commit 73ab03fc authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Add localhost to dev ALLOWED_HOSTS

parent d3febbd3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ SECRET_KEY = 'hjo$s%#k4(lf&-!tad0qeov51%k$@0n**1m9w*o91=v4k3ss$v'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
INTERNAL_IPS = Network('127.0.0.1')
ALLOWED_HOSTS = [getfqdn()]
ALLOWED_HOSTS = [getfqdn(), "localhost", "127.0.0.1"]

CACHE_MIDDLEWARE_SECONDS = 0