Files @ 17c9edbc60ff
Branch filter:

Location: website/www/wsgicustom.wsgi

bkuhn
Symlink for page should now point to about.html.

Now that the VMware case has been running a few months, we should point
this symlink properly to the general about for the project.
# 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()