diff options
| author | Carl Meyer <carl@oddbird.net> | 2011-10-22 04:30:10 +0000 |
|---|---|---|
| committer | Carl Meyer <carl@oddbird.net> | 2011-10-22 04:30:10 +0000 |
| commit | 145a77edc999fd5f1a53bc5bfd6b581386950074 (patch) | |
| tree | 473d45e11854e8c1e97a1a4bb4d6eb55d5edfddd /docs/howto/deployment/modpython.txt | |
| parent | dca81ad58a21ca9621a131c787544176618c27e8 (diff) | |
Fixed #16360 -- Added WSGI entrypoint to startproject layout, and enabled internal servers (runserver and runfcgi) to use an externally-defined WSGI application. Thanks to Armin Ronacher, Jannis Leidel, Alex Gaynor, ptone, and Jacob Kaplan-Moss.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17022 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/howto/deployment/modpython.txt')
| -rw-r--r-- | docs/howto/deployment/modpython.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/howto/deployment/modpython.txt b/docs/howto/deployment/modpython.txt index 201f45b72a..952cb3247b 100644 --- a/docs/howto/deployment/modpython.txt +++ b/docs/howto/deployment/modpython.txt @@ -7,14 +7,14 @@ How to use Django with Apache and mod_python Support for mod_python has been deprecated, and will be removed in Django 1.5. If you are configuring a new deployment, you are strongly encouraged to consider using :doc:`mod_wsgi - </howto/deployment/modwsgi>` or any of the other :doc:`supported - backends </howto/deployment/index>`. + </howto/deployment/wsgi/modwsgi>` or any of the other :doc:`supported + servers </howto/deployment/index>`. .. highlight:: apache The `mod_python`_ module for Apache_ can be used to deploy Django to a production server, although it has been mostly superseded by the simpler -:doc:`mod_wsgi deployment option </howto/deployment/modwsgi>`. +:doc:`mod_wsgi deployment option </howto/deployment/wsgi/modwsgi>`. mod_python is similar to (and inspired by) `mod_perl`_ : It embeds Python within Apache and loads Python code into memory when the server starts. Code stays in |
