Merge pull request #66 from bparees/allowed_hosts

move allowed hosts to settings.py
This commit is contained in:
Ben Parees 2016-11-02 15:35:32 -04:00 committed by GitHub
commit c4727a081b
4 changed files with 5 additions and 17 deletions

View file

@ -217,10 +217,6 @@
{ {
"name": "DJANGO_SECRET_KEY", "name": "DJANGO_SECRET_KEY",
"value": "${DJANGO_SECRET_KEY}" "value": "${DJANGO_SECRET_KEY}"
},
{
"name": "ALLOWED_HOSTS",
"value": "['*']"
} }
], ],
"resources": { "resources": {

View file

@ -217,10 +217,6 @@
{ {
"name": "DJANGO_SECRET_KEY", "name": "DJANGO_SECRET_KEY",
"value": "${DJANGO_SECRET_KEY}" "value": "${DJANGO_SECRET_KEY}"
},
{
"name": "ALLOWED_HOSTS",
"value": "['*']"
} }
], ],
"resources": { "resources": {

View file

@ -216,16 +216,12 @@
{ {
"name": "DJANGO_SECRET_KEY", "name": "DJANGO_SECRET_KEY",
"value": "${DJANGO_SECRET_KEY}" "value": "${DJANGO_SECRET_KEY}"
}, }
{
"name": "ALLOWED_HOSTS",
"value": "['*']"
}
], ],
"resources": { "resources": {
"limits": { "limits": {
"memory": "${MEMORY_LIMIT}" "memory": "${MEMORY_LIMIT}"
} }
} }
} }
] ]

View file

@ -30,7 +30,7 @@ SECRET_KEY = os.getenv(
# SECURITY WARNING: don't run with debug turned on in production! # SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True DEBUG = True
ALLOWED_HOSTS = [] ALLOWED_HOSTS = ['*']
# Application definition # Application definition