2008-08-24 06:25:40 +08:00
|
|
|
.. _howto-deployment-index:
|
|
|
|
|
|
|
|
Deploying Django
|
|
|
|
================
|
|
|
|
|
|
|
|
Django's chock-full of shortcuts to make web developer's lives easier, but all
|
|
|
|
those tools are of no use if you can't easily deploy your sites. Since Django's
|
|
|
|
inception, ease of deployment has been a major goal. There's a number of good
|
|
|
|
ways to easily deploy Django:
|
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 1
|
|
|
|
|
2009-04-01 03:34:25 +08:00
|
|
|
modwsgi
|
2008-08-24 06:25:40 +08:00
|
|
|
modpython
|
|
|
|
fastcgi
|
|
|
|
|
2009-04-01 03:34:25 +08:00
|
|
|
If you're new to deploying Django and/or Python, we'd recommend you try
|
|
|
|
:ref:`mod_wsgi <howto-deployment-modwsgi>` first. In most cases it'll be the easiest,
|
|
|
|
fastest, and most stable deployment choice.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
.. seealso::
|
|
|
|
|
2009-05-18 02:04:29 +08:00
|
|
|
* `Chapter 12 of The Django Book`_ discusses deployment and especially
|
2008-08-24 06:25:40 +08:00
|
|
|
scaling in more detail.
|
|
|
|
|
2009-05-18 02:04:29 +08:00
|
|
|
.. _chapter 12 of the django book: http://djangobook.com/en/2.0/chapter12/
|