Browse Source

move allowed hosts to settings.py

pull/66/head
Ben Parees 9 years ago
parent
commit
4170089b8e
4 changed files with 5 additions and 17 deletions
  1. +0
    -4
      openshift/templates/django-postgresql-persistent.json
  2. +0
    -4
      openshift/templates/django-postgresql.json
  3. +4
    -8
      openshift/templates/django.json
  4. +1
    -1
      project/settings.py

+ 0
- 4
openshift/templates/django-postgresql-persistent.json View File

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


+ 0
- 4
openshift/templates/django-postgresql.json View File

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


+ 4
- 8
openshift/templates/django.json View File

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


+ 1
- 1
project/settings.py View File

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


Loading…
Cancel
Save