Changes between Initial Version and Version 1 of Ticket #17351
- Timestamp:
- Dec 6, 2011, 7:16:22 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #17351
- Property Resolution → invalid
- Property Status new → closed
-
Ticket #17351 – Description
initial v1 6 6 7 7 For apache configuration, I use the following 8 8 {{{ 9 9 <Location "/project/"> 10 10 SetHandler python-program … … 25 25 PythonInterpreter projectadmin 26 26 </Location> 27 27 }}} 28 28 The project urls.py entries are as follows. 29 29 {{{ 30 #!python 30 31 from django.conf.urls.defaults import * 31 32 from django.contrib import admin … … 36 37 (r'^projectadmin/doc/', include('django.contrib.admindocs.urls')), 37 38 (r'^projectadmin/(.*)',admin.site.root), 38 39 }}} 39 40 The same urls I want to use in apache with mod_wsgi configuration. The following are my apache and project urls.py example configuration. 40 41 {{{ 41 42 WSGIScriptAlias /project /var/opt/project/apache/project.wsgi 43 }}} 42 44 urls.py 43 45 {{{ 46 #!python 44 47 from django.conf.urls.defaults import * 45 48 from django.contrib import admin … … 50 53 (r'^projectadmin/doc/', include('django.contrib.admindocs.urls')), 51 54 (r'^admin/(.*)',admin.site.root), 52 55 }}} 53 56 Please provide a solution for the wsgi configuration. 54 57