Update allowed hosts default setting

This commit is contained in:
Nathan Chapman 2023-01-23 20:48:07 -07:00
parent f878717c1d
commit b806160e9d

View File

@ -40,7 +40,7 @@ SECRET_KEY = env(
# SECURITY WARNING: don't run with debug turned on in production! # SECURITY WARNING: don't run with debug turned on in production!
DEBUG = env.bool('DEBUG', True) DEBUG = env.bool('DEBUG', True)
ALLOWED_HOSTS = env.list('ALLOWED_HOSTS', ['localhost']) ALLOWED_HOSTS = env.list('ALLOWED_HOSTS', ['*'])
INTERNAL_IPS = ['127.0.0.1', '10.0.2.2' '172.27.0.4'] INTERNAL_IPS = ['127.0.0.1', '10.0.2.2' '172.27.0.4']