Ben Sturmfels
5fa226284b
This middleware is mostly redundant: * redirecting to canonical URLs can be done more simply in Apache * appending a forward slash is a default in CommonMiddleware now * we're no longer using Squid cache May need to update Apache to strip/redirect trailing "index.html".
39 lines
969 B
Python
39 lines
969 B
Python
import json
|
|
|
|
from django.core.exceptions import ImproperlyConfigured
|
|
|
|
from .base import *
|
|
|
|
DEBUG = False
|
|
ALLOWED_HOSTS = ['www.sfconservancy.org', 'sfconservancy.org']
|
|
|
|
ADMINS = [
|
|
('Bradley M. Kuhn', 'sysadmin@sfconservancy.org'),
|
|
('Ben Sturmfels', 'sysadmin+conservancy@sturm.com.au'),
|
|
]
|
|
|
|
MANAGERS = [
|
|
('Bradley M. Kuhn', 'sysadmin@sfconservancy.org'),
|
|
]
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'NAME': '/var/lib/www/database/conservancy-website.sqlite3',
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
}
|
|
}
|
|
|
|
# Apache/mod_wsgi doesn't make it straightforward to pass environment variables
|
|
# to Django (can't use the Apache config).
|
|
with open(BASE_DIR.parent / 'secrets.json') as f:
|
|
secrets = json.load(f)
|
|
|
|
def get_secret(secrets, setting):
|
|
try:
|
|
return secrets[setting]
|
|
except KeyError:
|
|
raise ImproperlyConfigured(f'Missing secret \'{setting}\'')
|
|
|
|
SECRET_KEY = get_secret(secrets, 'SECRET_KEY')
|
|
|
|
SESSION_COOKIE_SECURE = True
|