diff options
| author | Karen Tracey <kmtracey@gmail.com> | 2009-05-17 18:06:12 +0000 |
|---|---|---|
| committer | Karen Tracey <kmtracey@gmail.com> | 2009-05-17 18:06:12 +0000 |
| commit | d4e44699aa32a591e8e57cbb148fbaabf2deaab8 (patch) | |
| tree | f67ef5540d20ff95f4b084aa1eec4a7ef3ad2293 /docs | |
| parent | fc24a690288e5ff79e50486fc410c9c56fafafe1 (diff) | |
[1.0.X] Fixed #10846: Corrected typo in modwsgi.txt and updated reference to deployment in The Django Book. Thanks timo.
r10812 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10813 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/howto/deployment/index.txt | 4 | ||||
| -rw-r--r-- | docs/howto/deployment/modwsgi.txt | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/howto/deployment/index.txt b/docs/howto/deployment/index.txt index 31efa14b29..78cfb037f5 100644 --- a/docs/howto/deployment/index.txt +++ b/docs/howto/deployment/index.txt @@ -21,7 +21,7 @@ fastest, and most stable deployment choice. .. seealso:: - * `Chapter 20 of The Django Book`_ discusses deployment and especially + * `Chapter 12 of The Django Book`_ discusses deployment and especially scaling in more detail. -.. _chapter 20 of the django book: http://djangobook.com/en/1.0/chapter20/ +.. _chapter 12 of the django book: http://djangobook.com/en/2.0/chapter12/ diff --git a/docs/howto/deployment/modwsgi.txt b/docs/howto/deployment/modwsgi.txt index fa1d39cc82..c35fba3183 100644 --- a/docs/howto/deployment/modwsgi.txt +++ b/docs/howto/deployment/modwsgi.txt @@ -31,7 +31,7 @@ and add:: WSGIScriptAlias / /path/to/mysite/apache/django.wsgi
-The first bit aboveis the url you want to be serving your application at (``/``
+The first bit above is the url you want to be serving your application at (``/``
indicates the root url), and the second is the location of a "WSGI file" -- see
below -- on your system, usually inside of your project. This tells Apache
to serve any request below the given URL using the WSGI application defined by that file.
|
