fmartingr
/
shelfzilla
Archived
1
0
Fork 0

Fixed production settings

This commit is contained in:
Felipe Martin 2014-04-23 00:01:46 +02:00
parent 88c74d0188
commit 1e70d5f9ee
1 changed files with 2 additions and 2 deletions

View File

@ -15,5 +15,5 @@ MEDIA_ROOT = os.environ['APP_MEDIA_ROOT']
SECRET_KEY = os.environ['APP_SECRET_KEY']
INTERNAL_IPS = environ['APP_INTERNAL_IPS'].split(',')
ALLOWED_HOSTS = environ['APP_ALLOWED_HOSTS'].split(',')
INTERNAL_IPS = os.environ['APP_INTERNAL_IPS'].split(',')
ALLOWED_HOSTS = os.environ['APP_ALLOWED_HOSTS'].split(',')