Files @ af6102f3c1bb
Branch filter:

Location: website/www/wsgicustom.wsgi

tbm
Fix link to Git web site

Fix link to Git web site. I didn't notice that the https site
uses .com rather than .org.
# 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()