Files @ 12780197e5df
Branch filter:

Location: website/www/conservancy/settings.py

bkuhn
Adapted Django application stuff for Conservancy; and normalized to string
"conservancy" within code and templates.
from djangocommonsettings import *

SITE_ID = 2
MEDIA_ROOT = '/var/www/external-website/conservancy/static/media/'
MEDIA_URL = 'http://conservancy.softwarefreedom.org/media'
ROOT_URLCONF = 'conservancy.urls'
FORCE_CANONICAL_HOSTNAME = "conservancy.softwarefreedom.org"

TEMPLATE_DIRS = (
    '/var/www/external-website/conservancy/templates',
)

try:
    from djangodebug import conservancy_hostname as FORCE_CANONICAL_HOSTNAME
except:
    pass