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:
parent
9a24228a3e
commit
1874f26d22
|
@ -2,14 +2,17 @@
|
||||||
How to use Django with mod_python
|
How to use Django with mod_python
|
||||||
=================================
|
=================================
|
||||||
|
|
||||||
Apache/mod_python currently is the preferred setup for using Django on a
|
`Apache`_ with `mod_python`_ currently is the preferred setup for using Django
|
||||||
production server.
|
on a production server.
|
||||||
|
|
||||||
mod_python, available at http://www.modpython.org/ , is similar to
|
mod_python is similar to `mod_perl`_ : It embeds Python within Apache and loads
|
||||||
`mod_perl`_ : It embeds Python within Apache and loads Python code into memory
|
Python code into memory when the server starts. Code stays in memory throughout
|
||||||
when the server starts. Code stays in memory throughout the life of an Apache
|
the life of an Apache process, which leads to significant performance gains over
|
||||||
process, which leads to significant performance gains over other server
|
other server arrangements.
|
||||||
arrangements.
|
|
||||||
|
.. _Apache: http://httpd.apache.org/
|
||||||
|
.. _mod_python: http://www.modpython.org/
|
||||||
|
.. _mod_perl: http://perl.apache.org/
|
||||||
|
|
||||||
Basic configuration
|
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
|
everything for each request. But don't do that on a production server, or we'll
|
||||||
revoke your Django privileges.
|
revoke your Django privileges.
|
||||||
|
|
||||||
.. _mod_perl: http://perl.apache.org/
|
|
||||||
.. _mod_python documentation: http://modpython.org/live/current/doc-html/directives.html
|
.. _mod_python documentation: http://modpython.org/live/current/doc-html/directives.html
|
||||||
|
|
||||||
Serving media files
|
Serving media files
|
||||||
|
|
Loading…
Reference in New Issue