Commit | Line | Data |
---|---|---|
620c9d5d P |
1 | # -*- coding: utf-8 -*- |
2 | # http://code.google.com/p/modwsgi/wiki/IntegrationWithDjango | |
3 | ||
4 | import os, sys | |
5 | sys.path.append(os.path.dirname(os.path.dirname(__file__))) | |
6 | os.environ['DJANGO_SETTINGS_MODULE'] = 'auf_zap.settings' | |
7 | ||
8 | import django.core.handlers.wsgi | |
9 | application = django.core.handlers.wsgi.WSGIHandler() |