From 377b510cbaa0076b44d412b537cba3d99604e0c7 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Thu, 6 Jan 2011 00:13:24 +0000 Subject: [PATCH] Prep work for moving to uWSGI --- auth_wsgi.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 auth_wsgi.py diff --git a/auth_wsgi.py b/auth_wsgi.py new file mode 100644 index 0000000..e2b4519 --- /dev/null +++ b/auth_wsgi.py @@ -0,0 +1,5 @@ +import os +import django.core.handlers.wsgi + +os.environ['DJANGO_SETTINGS_MODULE'] = 'settings' +application = django.core.handlers.wsgi.WSGIHandler()