third-party = don't know what happend there...
[unfold.git] / unfold / wsgi.py
deleted file mode 120000 (symlink)
index 579c87b54b0314beb77fb6bbd36781c1726471c5..0000000000000000000000000000000000000000
+++ /dev/null
@@ -1 +0,0 @@
-../apache/unfold.wsgi
\ No newline at end of file
new file mode 100644 (file)
index 0000000000000000000000000000000000000000..4af2e9f91a1398900f9f20bca571dddf0d01b95f
--- /dev/null
@@ -0,0 +1,12 @@
+import os
+import sys
+
+path = '/var/myslice-f4f'
+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()
+