Skip to content
This repository has been archived by the owner on Jan 25, 2018. It is now read-only.

Commit

Permalink
Update ALLOWED_HOSTS for dev and altdev.
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonthomas committed Apr 10, 2015
1 parent f8258b1 commit 1c7df82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webpay/settings/sites/altdev/settings_base.py
Expand Up @@ -7,7 +7,7 @@
from .. import splitstrip

DOMAIN = 'marketplace-altdev.allizom.org'
ALLOWED_HOSTS = DOMAIN
ALLOWED_HOSTS = [DOMAIN]

DATABASES = {}
DATABASES['default'] = dj_database_url.parse(private.DATABASES_DEFAULT_URL)
Expand Down
2 changes: 1 addition & 1 deletion webpay/settings/sites/dev/settings_base.py
Expand Up @@ -7,7 +7,7 @@
from .. import splitstrip

DOMAIN = 'marketplace-dev.allizom.org'
ALLOWED_HOSTS = [DOMAIN, 'marketplace-altdev.allizom.org']
ALLOWED_HOSTS = [DOMAIN]

DATABASES = {}
DATABASES['default'] = dj_database_url.parse(private.DATABASES_DEFAULT_URL)
Expand Down

0 comments on commit 1c7df82

Please sign in to comment.