Files @ 6dcb9d35e347
Branch filter:

Location: website/www/wsgicustom.wsgi - annotation

brett
blogs, news: Don't shade entries on listing pages.

This just causes entire pages to be shaded, which is undesirable.
# 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()