Setup django with WSGI and apache - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T12:01:29Zhttp://stackoverflow.com/feeds/question/36806http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/36806/setup-django-with-wsgi-and-apache2Setup django with WSGI and apacheHyposaurus2008-08-31T12:03:20Z2009-06-24T12:39:13Z
<p>I have been sold on mod_wsgi and apache rather than mod_python.
I have all the parts installed (django, apache, mod_wsgi) but have run into a problem deploying.</p>
<p>I am on osx 10.5 with apache 2.2 and django 1.0b2, mod_wsgi-2.3</p>
<p>My application is called tred.</p>
<p>Here are the relevant files:
httpd-vhosts (included in httpd-conf)</p>
<pre>
NameVirtualHost tred:80
ServerName tred
Alias /admin_media /usr/lib/python2.5/site-packages/django/contrib/admin/media
Order allow,deny
Allow from all
Alias /media /Users/dmg/Sites/tred/media
Order allow,deny
Allow from all
Alias / /Users/dmg/Sites/tred/
Order allow,deny
Allow from all
WSGIScriptAlias / /Users/dmg/Sites/tred/mod_wsgi-handler.wsgi
WSGIDaemonProcess tred user=dmg group=staff processes=1 threads=10
WSGIProcessGroup tred
</pre>
<p>mod_wsgi-handle.wsgi</p>
<pre>
import sys
import os
sys.path.append(os.path.dirname(os.path.abspath(__file__)) + '/..')
os.environ['DJANGO_SETTINGS_MODULE'] = 'tred.settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()
</pre>
<p>When I go to <a href="http://tred" rel="nofollow">http://tred</a> I get a directory listing rather than the rendered website. I think I have followed the tutorials correctly but it is obviously not right. What can I do to make this work?</p>
http://stackoverflow.com/questions/36806/setup-django-with-wsgi-and-apache/37009#370092Answer by John Millikin for Setup django with WSGI and apacheJohn Millikin2008-08-31T18:20:51Z2008-08-31T18:20:51Z<p>What happens if you remove the <code>Alias /</code> directive?</p>
http://stackoverflow.com/questions/36806/setup-django-with-wsgi-and-apache/37209#372090Answer by Hyposaurus for Setup django with WSGI and apacheHyposaurus2008-08-31T22:46:25Z2008-08-31T22:46:25Z<p>It works. I have no idea why, but it does.</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/36806/setup-django-with-wsgi-and-apache/37218#372183Answer by John Millikin for Setup django with WSGI and apacheJohn Millikin2008-08-31T22:51:15Z2008-08-31T22:51:15Z<blockquote>
<p>It works. I have no idea why, but it does.</p>
</blockquote>
<p>For future reference:</p>
<p>It works because Apache processes alias directives in order, and uses the first match. It was always hitting <code>Alias /</code>, which will match anything, before <code>WSGIScriptAlias</code>.</p>
<p>From the <a href="http://httpd.apache.org/docs/2.2/mod/mod_alias.html" rel="nofollow"><code>mod_alias</code> documentation</a>:</p>
<blockquote>
<p>First, all Redirects are processed before Aliases are processed, and therefore a request that matches a <code>Redirect</code> or <code>RedirectMatch</code> will never have Aliases applied. Second, the Aliases and Redirects are processed in the order they appear in the configuration files, with the first match taking precedence.</p>
</blockquote>
http://stackoverflow.com/questions/36806/setup-django-with-wsgi-and-apache/1038110#10381102Answer by Graham Dumpleton for Setup django with WSGI and apacheGraham Dumpleton2009-06-24T12:39:13Z2009-06-24T12:39:13Z<p>Note that Alias and WSGIScriptAlias directives do not have the same precedence. Thus, they will not be processed in file order as written. Instead, all Alias directives get precedence over WSGIScriptAlias directives. Thus, it wouldn't have mattered if the Alias for '/' appeared after WSGIScriptAlias, it would still have taken precedence.</p>