Fix settings

This commit is contained in:
Gergely Polonkai 2015-10-20 23:06:55 +02:00
parent e9a9663887
commit 90c5e8c5af

View File

@ -24,7 +24,7 @@ TEMPLATE_DEBUG = True
ALLOWED_HOSTS = ['*'] ALLOWED_HOSTS = ['*']
SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_FOR') SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_FOR', 'https')
# Application definition # Application definition
@ -59,7 +59,7 @@ WSGI_APPLICATION = 'duckbook.wsgi.application'
# Database # Database
# https://docs.djangoproject.com/en/1.7/ref/settings/#databases # https://docs.djangoproject.com/en/1.7/ref/settings/#databases
os.environ.setdefault('DATABASE_URL', 'sqlite://' + os.path.join(BASE_DIR, 'db.sqlite3') os.environ.setdefault('DATABASE_URL', 'sqlite://' + os.path.join(BASE_DIR, 'db.sqlite3'))
DATABASES = { DATABASES = {
'default': dj_database_url.config() 'default': dj_database_url.config()
} }