index.txt 874 B

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