2008-08-23 22:25:40 +00:00
|
|
|
Deploying Django
|
|
|
|
================
|
|
|
|
|
2010-10-09 08:12:50 +00:00
|
|
|
Django's chock-full of shortcuts to make Web developer's lives easier, but all
|
2008-08-23 22:25:40 +00:00
|
|
|
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
|
2010-08-19 19:27:44 +00:00
|
|
|
|
2011-10-22 04:30:10 +00:00
|
|
|
wsgi/index
|
2008-08-23 22:25:40 +00:00
|
|
|
fastcgi
|
2010-08-19 19:27:44 +00:00
|
|
|
|
2009-03-31 19:34:25 +00:00
|
|
|
If you're new to deploying Django and/or Python, we'd recommend you try
|
2011-10-22 04:30:10 +00:00
|
|
|
:doc:`mod_wsgi </howto/deployment/wsgi/modwsgi>` first. In most cases it'll be
|
2011-06-16 16:34:12 +00:00
|
|
|
the easiest, fastest, and most stable deployment choice.
|
2008-08-23 22:25:40 +00:00
|
|
|
|
|
|
|
.. seealso::
|
|
|
|
|
2011-09-11 01:12:11 +00:00
|
|
|
* `Chapter 12 of the Django Book (second edition)`_ discusses deployment
|
|
|
|
and especially scaling in more detail. However, note that this edition
|
|
|
|
was written against Django version 1.1 and has not been updated since
|
2012-03-31 10:34:11 +00:00
|
|
|
`mod_python` was first deprecated, then completely removed in Django 1.5.
|
2010-08-19 19:27:44 +00:00
|
|
|
|
2011-09-11 01:12:11 +00:00
|
|
|
.. _chapter 12 of the django book (second edition): http://djangobook.com/en/2.0/chapter12/
|