diff --git a/docs/modpython.txt b/docs/modpython.txt index 8688677c6b..72c2d9a073 100644 --- a/docs/modpython.txt +++ b/docs/modpython.txt @@ -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