reinheit/config/settings/production.py

18 lines
327 B
Python
Raw Normal View History

2024-06-27 19:38:36 +01:00
from .base import *
2024-06-27 19:13:43 +01:00
DATABASES = {
"default": {
"ENGINE": "django.db.backends.postgresql",
"NAME": "reinheit",
"USER": "reinheit",
}
}
DEBUG = False
2024-06-27 19:37:13 +01:00
ALLOWED_HOSTS = ["beer.gwairfelin.com"]
2024-06-27 22:39:35 +01:00
STATIC_ROOT = "/srv/www/beer.gwairfelin.com/static"
MEDIA_ROOT = "/srv/www/beer.gwairfelin.com/media"