parts/django/docs/howto/deployment/index.txt
changeset 69 c6bca38c1cbf
equal deleted inserted replaced
68:5ff1fc726848 69:c6bca38c1cbf
       
     1 Deploying Django
       
     2 ================
       
     3 
       
     4 Django's chock-full of shortcuts to make Web developer's lives easier, but all
       
     5 those tools are of no use if you can't easily deploy your sites. Since Django's
       
     6 inception, ease of deployment has been a major goal. There's a number of good
       
     7 ways to easily deploy Django:
       
     8 
       
     9 .. toctree::
       
    10    :maxdepth: 1
       
    11 
       
    12    modwsgi
       
    13    modpython
       
    14    fastcgi
       
    15 
       
    16 If you're new to deploying Django and/or Python, we'd recommend you try
       
    17 :doc:`mod_wsgi </howto/deployment/modwsgi>` first. In most cases it'll be the easiest,
       
    18 fastest, and most stable deployment choice.
       
    19 
       
    20 .. seealso::
       
    21 
       
    22     * `Chapter 12 of The Django Book`_ discusses deployment and especially
       
    23       scaling in more detail.
       
    24 
       
    25 .. _chapter 12 of the django book: http://djangobook.com/en/2.0/chapter12/