PageRenderTime 65ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/docs/howto/deployment/index.txt

https://code.google.com/p/mango-py/
Plain Text | 25 lines | 18 code | 7 blank | 0 comment | 0 complexity | 7d5f6f4c1b72129a295926d06dd957d5 MD5 | raw file
Possible License(s): BSD-3-Clause
  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. fastcgi
  11. mod_python (deprecated) <modpython>
  12. If you're new to deploying Django and/or Python, we'd recommend you try
  13. :doc:`mod_wsgi </howto/deployment/modwsgi>` first. In most cases it'll be the easiest,
  14. fastest, and most stable deployment choice.
  15. .. seealso::
  16. * `Chapter 12 of The Django Book`_ discusses deployment and especially
  17. scaling in more detail.
  18. .. _chapter 12 of the django book: http://djangobook.com/en/2.0/chapter12/