/docs/howto/deployment/index.txt
Plain Text | 25 lines | 18 code | 7 blank | 0 comment | 0 complexity | 7d5f6f4c1b72129a295926d06dd957d5 MD5 | raw file
Possible License(s): BSD-3-Clause
1Deploying Django 2================ 3 4Django's chock-full of shortcuts to make Web developer's lives easier, but all 5those tools are of no use if you can't easily deploy your sites. Since Django's 6inception, ease of deployment has been a major goal. There's a number of good 7ways to easily deploy Django: 8 9.. toctree:: 10 :maxdepth: 1 11 12 modwsgi 13 fastcgi 14 mod_python (deprecated) <modpython> 15 16If 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, 18fastest, 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/