Ticket #10846: deployment-typo.diff
File deployment-typo.diff, 1.3 KB (added by , 16 years ago) |
---|
-
docs/howto/deployment/modwsgi.txt
31 31 32 32 WSGIScriptAlias / /path/to/mysite/apache/django.wsgi 33 33 34 The first bit above is the url you want to be serving your application at (``/``34 The first bit above is the url you want to be serving your application at (``/`` 35 35 indicates the root url), and the second is the location of a "WSGI file" -- see 36 36 below -- on your system, usually inside of your project. This tells Apache 37 37 to serve any request below the given URL using the WSGI application defined by that file. -
docs/howto/deployment/index.txt
21 21 22 22 .. seealso:: 23 23 24 * `Chapter 20of The Django Book`_ discusses deployment and especially24 * `Chapter 12 of The Django Book`_ discusses deployment and especially 25 25 scaling in more detail. 26 26 27 .. _chapter 20 of the django book: http://djangobook.com/en/1.0/chapter20/27 .. _chapter 12 of the django book: http://djangobook.com/en/2.0/chapter12/