authentic/debian/authentic2.wsgi

10 lines
248 B
Python

import os
import sys
# Allows to lookup local_settings.py
sys.path.append('/etc/authentic2')
os.environ['DJANGO_SETTINGS_MODULE'] = 'authentic2.settings.prod'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()