mirror of https://github.com/zulip/zulip.git
Add IP addresses for app frontends to ALLOWED_HOSTS.
(imported from commit f5cc75f0ac3851bfe9a554d08875dcb5a19a9dc5)
This commit is contained in:
parent
d8bed8dc08
commit
24a464cee1
|
@ -19,7 +19,8 @@ TEST_SUITE = False
|
|||
if DEBUG:
|
||||
INTERNAL_IPS = ('127.0.0.1',)
|
||||
if DEPLOYED:
|
||||
ALLOWED_HOSTS = ['localhost', '.humbughq.com']
|
||||
# The IP addresses are for app.humbughq.com and staging.humbughq.com
|
||||
ALLOWED_HOSTS = ['localhost', '.humbughq.com', '54.245.10.122', '54.245.120.64']
|
||||
else:
|
||||
ALLOWED_HOSTS = ['localhost']
|
||||
|
||||
|
|
Loading…
Reference in New Issue