Changeset 223
- Timestamp:
- 07/19/05 15:20:38 (3 years ago)
- Files:
-
- django/trunk/docs/modpython.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/modpython.txt
r222 r223 11 11 process, which leads to significant performance gains over other server 12 12 arrangements. 13 14 Basic configuration 15 =================== 13 16 14 17 To configure Django with mod_python, first make sure you have Apache installed, … … 61 64 The only thing different here is the ``DJANGO_SETTINGS_MODULE``. 62 65 66 Running a development server with mod_python 67 ============================================ 68 69 If you use mod_python for your development server, you can avoid the hassle of 70 having to restart the server each time you make code changes. Just set 71 ``MaxRequestsPerChild 1`` in your ``httpd.conf`` file to force Apache to reload 72 everything for each request. But don't do that on a production server, or we'll 73 revoke your Django privileges. 74 63 75 .. _mod_perl: http://perl.apache.org/ 64 76 .. _mod_python documentation: http://modpython.org/live/current/doc-html/directives.html
