Ticket #3047: flup_docs.patch
File flup_docs.patch, 2.5 KB (added by , 18 years ago) |
---|
-
docs/faq.txt
328 328 329 329 Although we recommend mod_python for production use, you don't have to use it, 330 330 thanks to the fact that Django uses an arrangement called WSGI_. Django can 331 talk to any WSGI-enabled server. The most common non-mod_python deployment 332 setup is FastCGI. See `How to use Django with FastCGI`_ for full information. 331 talk to any WSGI-enabled server. Other common non-mod_python deployment 332 setups are FastCGI, SCGI, or AJP. See `How to use Django with FastCGI`_ for 333 full information. 333 334 334 335 Also, see the `server arrangements wiki page`_ for other deployment strategies. 335 336 -
docs/fastcgi.txt
3 3 ============================== 4 4 5 5 Although the `current preferred setup`_ for running Django is Apache_ with 6 `mod_python`_, many people use shared hosting, on which FastCGI is the only7 viable option. In some setups, FastCGI also allows better security -- and, 8 possibly, better performance -- than mod_python.6 `mod_python`_, many people use shared hosting, on which protocols such as 7 FastCGI, SCGI, or AJP are the only viable options. In some setups, these protocols 8 also allow better security -- and, possibly, better performance -- than mod_python. 9 9 10 .. admonition:: Note 11 12 This document discusses FastCGI, but any flup-supported protocol can be 13 selected by using the `protocol=`<protocol_name> option with 14 `./manage.py runfcgi` where <protocol-name> may currently be one of: 15 `fcgi` (the default), `scgi`, or `ajp`. 16 10 17 Essentially, FastCGI is an efficient way of letting an external application 11 18 serve pages to a Web server. The Web server delegates the incoming Web requests 12 19 (via a socket) to FastCGI, which executes the code and passes the response back -
docs/modpython.txt
13 13 Django requires Apache 2.x and mod_python 3.x, and you should use Apache's 14 14 `prefork MPM`_, as opposed to the `worker MPM`_. 15 15 16 You may also be interested in `How to use Django with FastCGI`_. 16 You may also be interested in `How to use Django with FastCGI`_ (which also 17 covers SCGI and AJP). 17 18 18 19 .. _Apache: http://httpd.apache.org/ 19 20 .. _mod_python: http://www.modpython.org/