Django

Code

Changeset 3210

Show
Ignore:
Timestamp:
06/26/06 07:43:21 (2 years ago)
Author:
adrian
Message:

Added links to FastCGI docs from various places

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/faq.txt

    r3159 r3210  
    302302---------------------------- 
    303303 
    304 Not if you just want to play around and develop things on your local computer. 
    305 Django comes with its own Web server, and things should Just Work. 
    306  
    307 For production use, though, we recommend mod_python. The Django developers have 
    308 been running it on mod_python for several years, and it's quite stable. 
    309  
    310 However, if you don't want to use mod_python, you can use a different server, 
    311 as long as that server has WSGI_ hooks. See the `server arrangements wiki page`_. 
     304Although we recommend mod_python for production use, you don't have to use it, 
     305thanks to the fact that Django uses an arrangement called WSGI_. Django can 
     306talk to any WSGI-enabled server. The most common non-mod_python deployment 
     307setup is FastCGI. See `How to use Django with FastCGI`_ for full information. 
     308 
     309Also, see the `server arrangements wiki page`_ for other deployment strategies. 
     310 
     311If you just want to play around and develop things on your local computer, use 
     312the development Web server that comes with Django. Things should Just Work. 
    312313 
    313314.. _WSGI: http://www.python.org/peps/pep-0333.html 
     315.. _How to use Django with FastCGI: http://www.djangoproject.com/documentation/fastcgi/ 
    314316.. _server arrangements wiki page: http://code.djangoproject.com/wiki/ServerArrangements 
    315317 
  • django/trunk/docs/fastcgi.txt

    r3209 r3210  
    33============================== 
    44 
    5 Although the current preferred setup for running Django is Apache_ with 
     5Although the `current preferred setup`_ for running Django is Apache_ with 
    66`mod_python`_, many people use shared hosting, on which FastCGI is the only 
    77viable option. In some setups, FastCGI also allows better security -- and, 
     
    1818persistent process. 
    1919 
     20.. _current preferred setup: http://www.djangoproject.com/documentation/modpython/ 
    2021.. _Apache: http://httpd.apache.org/ 
    2122.. _mod_python: http://www.modpython.org/ 
  • django/trunk/docs/modpython.txt

    r2866 r3210  
    1111other server arrangements. 
    1212 
    13 Django requires Apache 2.x and mod_python 3.x. 
    14  
    15 We recommend you use Apache's `prefork MPM`_, as opposed to the `worker MPM`_. 
     13Django requires Apache 2.x and mod_python 3.x, and you should use Apache's 
     14`prefork MPM`_, as opposed to the `worker MPM`_. 
     15 
     16You may also be interested in `How to use Django with FastCGI`_. 
    1617 
    1718.. _Apache: http://httpd.apache.org/ 
     
    2021.. _prefork MPM: http://httpd.apache.org/docs/2.2/mod/prefork.html 
    2122.. _worker MPM: http://httpd.apache.org/docs/2.2/mod/worker.html 
     23.. _How to use Django with FastCGI: http://www.djangoproject.com/documentation/fastcgi/ 
    2224 
    2325Basic configuration