Small change to docs/modpython.txt -- added link to Apache Web site

git-svn-id: http://code.djangoproject.com/svn/django/trunk@642 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-09-14 19:07:29 +00:00
parent 9a24228a3e
commit 1874f26d22
1 changed files with 10 additions and 8 deletions

View File

@ -2,14 +2,17 @@
How to use Django with mod_python
=================================
Apache/mod_python currently is the preferred setup for using Django on a
production server.
`Apache`_ with `mod_python`_ currently is the preferred setup for using Django
on a production server.
mod_python, available at http://www.modpython.org/ , is similar to
`mod_perl`_ : It embeds Python within Apache and loads Python code into memory
when the server starts. Code stays in memory throughout the life of an Apache
process, which leads to significant performance gains over other server
arrangements.
mod_python is similar to `mod_perl`_ : It embeds Python within Apache and loads
Python code into memory when the server starts. Code stays in memory throughout
the life of an Apache process, which leads to significant performance gains over
other server arrangements.
.. _Apache: http://httpd.apache.org/
.. _mod_python: http://www.modpython.org/
.. _mod_perl: http://perl.apache.org/
Basic configuration
===================
@ -114,7 +117,6 @@ having to restart the server each time you make code changes. Just set
everything for each request. But don't do that on a production server, or we'll
revoke your Django privileges.
.. _mod_perl: http://perl.apache.org/
.. _mod_python documentation: http://modpython.org/live/current/doc-html/directives.html
Serving media files