Files @ f40a1209a911
Branch filter:

Location: website/www/wsgicustom.wsgi

bkuhn
/projects now handled by static views.

As a last step, we remove /members, which is now fully handled by Apache
static config, to be /projects for use the static page handler.
# wsgicustom.py

import os
import sys

sys.path = ['/var/www'] + sys.path
os.environ['DJANGO_SETTINGS_MODULE'] = 'conservancy.settings'

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()