From 8ebe5db684ac7e97836dabbce091c41a8b2e12fd Mon Sep 17 00:00:00 2001 From: Adrian Holovaty <adrian@holovaty.com> Date: Thu, 11 Aug 2005 19:00:56 +0000 Subject: [PATCH] Added link to mod_python doc from docs/install.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@484 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/install.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/install.txt b/docs/install.txt index 4f8e6db932..b347006cbb 100644 --- a/docs/install.txt +++ b/docs/install.txt @@ -17,6 +17,9 @@ the life of an Apache process, which leads to significant performance gains over other server arrangements. Make sure you have Apache installed, with the mod_python module activated. +See `How to use Django with mod_python`_ for information on how to configure +mod_python once you have it installed. + If you can't use mod_python for some reason, fear not: Django follows the WSGI_ spec, which allows it to run on a variety of server platforms. As people experiment with different server platforms, we'll update this document to @@ -25,6 +28,7 @@ give specific installation instructions for each platform. .. _Apache: http://httpd.apache.org/ .. _mod_python: http://www.modpython.org/ .. _WSGI: http://www.python.org/peps/pep-0333.html +.. _How to use Django with mod_python: http://www.djangoproject.com/documentation/modpython/ Get your database running =========================