public
Description: The source code for the Django Plugables application index.
Homepage: http://djangoplugables.com/
Clone URL: git://github.com/revyver/django-plugables.git
Search Repo:
Will be trying out mod_wsgi as a deployment option; committing the 
configuration files for it.
revyver (author)
Fri Apr 11 15:41:52 -0700 2008
commit  ea63503ca902d902597a2ea88b1a65133d6919e6
tree    b1a903178bca1be601e1bb9fd5ac3d89b3faa327
parent  52676310165e0ffb5e0a9a684004d4734f2d4966
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
0
@@ -0,0 +1,14 @@
0
+import os, sys
0
+
0
+sys.path.append('/home/plugables/applications')
0
+sys.path.append('/home/plugables/applications/core')
0
+sys.path.append('/home/plugables/applications/projects')
0
+
0
+os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
0
+
0
+import django.core.handlers.wsgi
0
+application = django.core.handlers.wsgi.WSGIHandler()
0
+
0
+# def application(environ, start_response):
0
+# environ['PATH_INFO'] = environ['SCRIPT_NAME'] + environ['PATH_INFO']
0
+# return _application(environ, start_response)
0
\ No newline at end of file
...
 
 
 
 
 
 
0
...
1
2
3
4
5
6
7
0
@@ -0,0 +1,6 @@
0
+WSGIScriptAlias / /home/plugables/applications/apache/django.wsgi
0
+
0
+<Directory "/home/plugables/applications/apache">
0
+ Order deny,allow
0
+ Allow from all
0
+</Directory>
0
\ No newline at end of file

Comments

    No one has commented yet.