Changes between Version 17 and Version 18 of ServerArrangements
- Timestamp:
- Jun 26, 2006, 7:50:21 AM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ServerArrangements
v17 v18 3 3 Because 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. 4 4 5 == mod_python ==5 == Apache with mod_python == 6 6 7 7 See the [http://www.djangoproject.com/documentation/modpython/ official documentation]. 8 8 9 == Apache and FCGI ==9 == Apache with FastCGI == 10 10 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.11 See the [http://www.djangoproject.com/documentation/fastcgi/ official documentation]. 12 12 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]. 13 Mac 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 14 14 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 15 Legacy 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]. 16 16 17 17 == lighttpd (via FCGI) ==