20 lines
383 B
Python
20 lines
383 B
Python
from .base import *
|
|
|
|
|
|
DATABASES = {
|
|
"default": {
|
|
"ENGINE": "django.db.backends.postgresql",
|
|
"NAME": "reinheit",
|
|
"USER": "reinheit",
|
|
}
|
|
}
|
|
|
|
DEBUG = False
|
|
|
|
ALLOWED_HOSTS = ["beer.gwairfelin.com"]
|
|
|
|
STATIC_ROOT = "/srv/www/beer.gwairfelin.com/static"
|
|
MEDIA_ROOT = "/srv/www/beer.gwairfelin.com/media"
|
|
|
|
SESSION_COOKIE_SECURE = True
|
|
CSRF_COOKIE_SECURE = True
|