From e5bcda02c4f961302c3337f4ea30a10cd0e469de Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Fri, 24 May 2013 10:31:39 -0400 Subject: [PATCH] Update prod IP address in ALLOWED_HOSTS. (imported from commit 179cfc1fbf9ba0c92b231dc56744597a851b4893) --- humbug/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/humbug/settings.py b/humbug/settings.py index 49f3b22640..9a5536cc90 100644 --- a/humbug/settings.py +++ b/humbug/settings.py @@ -20,7 +20,7 @@ if DEBUG: INTERNAL_IPS = ('127.0.0.1',) if DEPLOYED: # 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'] + ALLOWED_HOSTS = ['localhost', '.humbughq.com', '54.214.48.144', '54.245.120.64'] else: ALLOWED_HOSTS = ['localhost']