Files @ 1e1fd78375ce
Branch filter:

Location: website/www/wsgicustom.wsgi

bkuhn
Improve formating and linkage to match original.

KCC put this originally on their own website. By inspecting that, I was
able to match some of their formatting a little bit better.
# 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()