put wsgi.py in myslice/ and propagate this change
[myslice.git] / apache / wsgi.py
diff --git a/apache/wsgi.py b/apache/wsgi.py
deleted file mode 100644 (file)
index 5bd9728..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-import os
-import sys
-
-path = '/usr/share/unfold'
-if path not in sys.path:
-    sys.path.append(path)
-
-os.environ['DJANGO_SETTINGS_MODULE'] = 'myslice.settings'
-
-import django.core.handlers.wsgi
-application = django.core.handlers.wsgi.WSGIHandler()
-