Changes between Initial Version and Version 1 of Ticket #17351


Ignore:
Timestamp:
Dec 6, 2011, 7:16:22 AM (12 years ago)
Author:
Karen Tracey
Comment:

Fixed formatting. Please use WikiFormatting and the preview button before posting. This sounds like a user support question, not a bug in Django. Please see TicketClosingReasons/UseSupportChannels

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #17351

    • Property Resolutioninvalid
    • Property Status newclosed
  • Ticket #17351 – Description

    initial v1  
    66
    77For apache configuration, I use the following
    8 
     8{{{
    99<Location "/project/">
    1010      SetHandler python-program
     
    2525      PythonInterpreter projectadmin
    2626</Location>
    27 
     27}}}
    2828The project urls.py entries are as follows.
    29 
     29{{{
     30#!python
    3031from django.conf.urls.defaults import *
    3132from django.contrib import admin
     
    3637     (r'^projectadmin/doc/', include('django.contrib.admindocs.urls')),
    3738     (r'^projectadmin/(.*)',admin.site.root),
    38 
     39}}}
    3940The 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{{{
    4142WSGIScriptAlias /project /var/opt/project/apache/project.wsgi
     43}}}
    4244urls.py
    43 
     45{{{
     46#!python
    4447from django.conf.urls.defaults import *
    4548from django.contrib import admin
     
    5053     (r'^projectadmin/doc/', include('django.contrib.admindocs.urls')),
    5154     (r'^admin/(.*)',admin.site.root),
    52 
     55}}}
    5356Please provide a solution for the wsgi configuration.
    5457
Back to Top