Ticket #10846: deployment-typo.diff

File deployment-typo.diff, 1.3 KB (added by Tim Graham, 15 years ago)
  • docs/howto/deployment/modwsgi.txt

     
    3131
    3232    WSGIScriptAlias / /path/to/mysite/apache/django.wsgi
    3333
    34 The first bit aboveis the url you want to be serving your application at (``/``
     34The first bit above is the url you want to be serving your application at (``/``
    3535indicates the root url), and the second is the location of a "WSGI file" -- see
    3636below -- on your system, usually inside of your project. This tells Apache
    3737to serve any request below the given URL using the WSGI application defined by that file.
  • docs/howto/deployment/index.txt

     
    2121
    2222.. seealso::
    2323
    24     * `Chapter 20 of The Django Book`_ discusses deployment and especially
     24    * `Chapter 12 of The Django Book`_ discusses deployment and especially
    2525      scaling in more detail.
    2626     
    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/
Back to Top