Changes between Version 17 and Version 18 of ServerArrangements


Ignore:
Timestamp:
Jun 26, 2006, 7:50:21 AM (18 years ago)
Author:
Adrian Holovaty
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ServerArrangements

    v17 v18  
    33Because Django uses [http://www.python.org/peps/pep-0333.html WSGI], it can run on any WSGI-compatible Web server. Here's how to run Django on various server arrangements.
    44
    5 == mod_python ==
     5== Apache with mod_python ==
    66
    77See the [http://www.djangoproject.com/documentation/modpython/ official documentation].
    88
    9 == Apache and FCGI ==
     9== Apache with FastCGI ==
    1010
    11 Flup (the FCGI wrapper used for this) has a little bug with python 2.3 that will make larger pages stall on access just before end. Make sure you use the newest svn checkout for the flup library, as the bug is fixed in there. See DjangoUsingFlup for more.
     11See the [http://www.djangoproject.com/documentation/fastcgi/ official documentation].
    1212
    13 See [http://hugo.muensterland.org/2005/08/03/django-apache-and-fcgi/ Django, Apache and FCGI]. Needs stuff from the [http://hugo.muensterland.org/2005/07/26/running-django-with-fcgi-and-lighttpd/ lighttpd+FCGI documentation].
     13Mac OS X users, see [wiki:OsxFcgi Django with FCGI on OS X] -- How to get Django up and running with FastCGI and the Mac OS X default Apache 1.3
    1414
    15 Mac OS X users see [wiki:OsxFcgi Django with FCGI on OS X] -- How to get Django up and running with FCGI and the Mac OS X default Apache 1.3
     15Legacy documentation (i.e., unofficial docs written before the official docs were released) is available here: [http://hugo.muensterland.org/2005/08/03/django-apache-and-fcgi/ Django, Apache and FCGI] and [http://hugo.muensterland.org/2005/07/26/running-django-with-fcgi-and-lighttpd/ lighttpd+FCGI documentation].
    1616
    1717== lighttpd (via FCGI) ==
Back to Top