| 1 |
================================= |
|---|
| 2 |
How to use Django with mod_python |
|---|
| 3 |
================================= |
|---|
| 4 |
|
|---|
| 5 |
Apache_ with `mod_python`_ currently is the preferred setup for using Django |
|---|
| 6 |
on a production server. |
|---|
| 7 |
|
|---|
| 8 |
mod_python is similar to `mod_perl`_ : It embeds Python within Apache and loads |
|---|
| 9 |
Python code into memory when the server starts. Code stays in memory throughout |
|---|
| 10 |
the life of an Apache process, which leads to significant performance gains over |
|---|
| 11 |
other server arrangements. |
|---|
| 12 |
|
|---|
| 13 |
Django 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 |
|
|---|
| 16 |
You may also be interested in `How to use Django with FastCGI`_. |
|---|
| 17 |
|
|---|
| 18 |
.. _Apache: http://httpd.apache.org/ |
|---|
| 19 |
.. _mod_python: http://www.modpython.org/ |
|---|
| 20 |
.. _mod_perl: http://perl.apache.org/ |
|---|
| 21 |
.. _prefork MPM: http://httpd.apache.org/docs/2.2/mod/prefork.html |
|---|
| 22 |
.. _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/ |
|---|
| 24 |
|
|---|
| 25 |
Basic configuration |
|---|
| 26 |
=================== |
|---|
| 27 |
|
|---|
| 28 |
To configure Django with mod_python, first make sure you have Apache installed, |
|---|
| 29 |
with the mod_python module activated. |
|---|
| 30 |
|
|---|
| 31 |
Then edit your ``httpd.conf`` file and add the following:: |
|---|
| 32 |
|
|---|
| 33 |
<Location "/mysite/"> |
|---|
| 34 |
SetHandler python-program |
|---|
| 35 |
PythonHandler django.core.handlers.modpython |
|---|
| 36 |
SetEnv DJANGO_SETTINGS_MODULE mysite.settings |
|---|
| 37 |
PythonDebug On |
|---|
| 38 |
</Location> |
|---|
| 39 |
|
|---|
| 40 |
...and replace ``mysite.settings`` with the Python path to your settings file. |
|---|
| 41 |
|
|---|
| 42 |
This tells Apache: "Use mod_python for any URL at or under '/mysite/', using the |
|---|
| 43 |
Django mod_python handler." It passes the value of ``DJANGO_SETTINGS_MODULE`` |
|---|
| 44 |
so mod_python knows which settings to use. |
|---|
| 45 |
|
|---|
| 46 |
Also, if you've manually altered your ``PYTHONPATH`` to put your Django project |
|---|
| 47 |
on it, you'll need to tell mod_python:: |
|---|
| 48 |
|
|---|
| 49 |
PythonPath "['/path/to/project'] + sys.path" |
|---|
| 50 |
|
|---|
| 51 |
You can also add directives such as ``PythonAutoReload Off`` for performance. |
|---|
| 52 |
See the `mod_python documentation`_ for a full list of options. |
|---|
| 53 |
|
|---|
| 54 |
Note that you should set ``PythonDebug Off`` on a production server. If you |
|---|
| 55 |
leave ``PythonDebug On``, your users would see ugly (and revealing) Python |
|---|
| 56 |
tracebacks if something goes wrong within mod_python. |
|---|
| 57 |
|
|---|
| 58 |
Restart Apache, and any request to /mysite/ or below will be served by Django. |
|---|
| 59 |
Note that Django's URLconfs won't trim the "/mysite/" -- they get passed the |
|---|
| 60 |
full URL. |
|---|
| 61 |
|
|---|
| 62 |
When deploying Django sites on mod_python, you'll need to restart Apache each |
|---|
| 63 |
time you make changes to your Python code. |
|---|
| 64 |
|
|---|
| 65 |
Multiple Django installations on the same Apache |
|---|
| 66 |
================================================ |
|---|
| 67 |
|
|---|
| 68 |
It's entirely possible to run multiple Django installations on the same Apache |
|---|
| 69 |
instance. Just use ``VirtualHost`` for that, like so:: |
|---|
| 70 |
|
|---|
| 71 |
NameVirtualHost * |
|---|
| 72 |
|
|---|
| 73 |
<VirtualHost *> |
|---|
| 74 |
ServerName www.example.com |
|---|
| 75 |
# ... |
|---|
| 76 |
SetEnv DJANGO_SETTINGS_MODULE mysite.settings |
|---|
| 77 |
</VirtualHost> |
|---|
| 78 |
|
|---|
| 79 |
<VirtualHost *> |
|---|
| 80 |
ServerName www2.example.com |
|---|
| 81 |
# ... |
|---|
| 82 |
SetEnv DJANGO_SETTINGS_MODULE mysite.other_settings |
|---|
| 83 |
</VirtualHost> |
|---|
| 84 |
|
|---|
| 85 |
If you need to put two Django installations within the same ``VirtualHost``, |
|---|
| 86 |
you'll need to take a special precaution to ensure mod_python's cache doesn't |
|---|
| 87 |
mess things up. Use the ``PythonInterpreter`` directive to give different |
|---|
| 88 |
``<Location>`` directives separate interpreters:: |
|---|
| 89 |
|
|---|
| 90 |
<VirtualHost *> |
|---|
| 91 |
ServerName www.example.com |
|---|
| 92 |
# ... |
|---|
| 93 |
<Location "/something"> |
|---|
| 94 |
SetEnv DJANGO_SETTINGS_MODULE mysite.settings |
|---|
| 95 |
PythonInterpreter mysite |
|---|
| 96 |
</Location> |
|---|
| 97 |
|
|---|
| 98 |
<Location "/otherthing"> |
|---|
| 99 |
SetEnv DJANGO_SETTINGS_MODULE mysite.other_settings |
|---|
| 100 |
PythonInterpreter mysite_other |
|---|
| 101 |
</Location> |
|---|
| 102 |
</VirtualHost> |
|---|
| 103 |
|
|---|
| 104 |
The values of ``PythonInterpreter`` don't really matter, as long as they're |
|---|
| 105 |
different between the two ``Location`` blocks. |
|---|
| 106 |
|
|---|
| 107 |
Running a development server with mod_python |
|---|
| 108 |
============================================ |
|---|
| 109 |
|
|---|
| 110 |
If you use mod_python for your development server, you can avoid the hassle of |
|---|
| 111 |
having to restart the server each time you make code changes. Just set |
|---|
| 112 |
``MaxRequestsPerChild 1`` in your ``httpd.conf`` file to force Apache to reload |
|---|
| 113 |
everything for each request. But don't do that on a production server, or we'll |
|---|
| 114 |
revoke your Django privileges. |
|---|
| 115 |
|
|---|
| 116 |
If you're the type of programmer who debugs using scattered ``print`` |
|---|
| 117 |
statements, note that ``print`` statements have no effect in mod_python; they |
|---|
| 118 |
don't appear in the Apache log, as one might expect. If you have the need to |
|---|
| 119 |
print debugging information in a mod_python setup, either do this:: |
|---|
| 120 |
|
|---|
| 121 |
assert False, the_value_i_want_to_see |
|---|
| 122 |
|
|---|
| 123 |
Or add the debugging information to the template of your page. |
|---|
| 124 |
|
|---|
| 125 |
.. _mod_python documentation: http://modpython.org/live/current/doc-html/directives.html |
|---|
| 126 |
|
|---|
| 127 |
Serving media files |
|---|
| 128 |
=================== |
|---|
| 129 |
|
|---|
| 130 |
Django doesn't serve media files itself; it leaves that job to whichever Web |
|---|
| 131 |
server you choose. |
|---|
| 132 |
|
|---|
| 133 |
We recommend using a separate Web server -- i.e., one that's not also running |
|---|
| 134 |
Django -- for serving media. Here are some good choices: |
|---|
| 135 |
|
|---|
| 136 |
* lighttpd_ |
|---|
| 137 |
* TUX_ |
|---|
| 138 |
* A stripped-down version of Apache_ |
|---|
| 139 |
|
|---|
| 140 |
If, however, you have no option but to serve media files on the same Apache |
|---|
| 141 |
``VirtualHost`` as Django, here's how you can turn off mod_python for a |
|---|
| 142 |
particular part of the site:: |
|---|
| 143 |
|
|---|
| 144 |
<Location "/media/"> |
|---|
| 145 |
SetHandler None |
|---|
| 146 |
</Location> |
|---|
| 147 |
|
|---|
| 148 |
Just change ``Location`` to the root URL of your media files. You can also use |
|---|
| 149 |
``<LocationMatch>`` to match a regular expression. |
|---|
| 150 |
|
|---|
| 151 |
This example sets up Django at the site root but explicitly disables Django for |
|---|
| 152 |
the ``media`` subdirectory and any URL that ends with ``.jpg``, ``.gif`` or |
|---|
| 153 |
``.png``:: |
|---|
| 154 |
|
|---|
| 155 |
<Location "/"> |
|---|
| 156 |
SetHandler python-program |
|---|
| 157 |
PythonHandler django.core.handlers.modpython |
|---|
| 158 |
SetEnv DJANGO_SETTINGS_MODULE mysite.settings |
|---|
| 159 |
</Location> |
|---|
| 160 |
|
|---|
| 161 |
<Location "media"> |
|---|
| 162 |
SetHandler None |
|---|
| 163 |
</Location> |
|---|
| 164 |
|
|---|
| 165 |
<LocationMatch "\.(jpg|gif|png)$"> |
|---|
| 166 |
SetHandler None |
|---|
| 167 |
</LocationMatch> |
|---|
| 168 |
|
|---|
| 169 |
|
|---|
| 170 |
.. _lighttpd: http://www.lighttpd.net/ |
|---|
| 171 |
.. _TUX: http://en.wikipedia.org/wiki/TUX_web_server |
|---|
| 172 |
.. _Apache: http://httpd.apache.org/ |
|---|
| 173 |
|
|---|
| 174 |
Serving the admin files |
|---|
| 175 |
======================= |
|---|
| 176 |
|
|---|
| 177 |
Note that the Django development server automagically serves admin media files, |
|---|
| 178 |
but this is not the case when you use any other server arrangement. You're |
|---|
| 179 |
responsible for setting up Apache, or whichever media server you're using, to |
|---|
| 180 |
serve the admin files. |
|---|
| 181 |
|
|---|
| 182 |
The admin files live in (``django/contrib/admin/media``) of the Django |
|---|
| 183 |
distribution. |
|---|
| 184 |
|
|---|
| 185 |
Here are two recommended approaches: |
|---|
| 186 |
|
|---|
| 187 |
1. Create a symbolic link to the admin media files from within your |
|---|
| 188 |
document root. This way, all of your Django-related files -- code |
|---|
| 189 |
**and** templates -- stay in one place, and you'll still be able to |
|---|
| 190 |
``svn update`` your code to get the latest admin templates, if they |
|---|
| 191 |
change. |
|---|
| 192 |
2. Or, copy the admin media files so that they live within your Apache |
|---|
| 193 |
document root. |
|---|
| 194 |
|
|---|
| 195 |
Error handling |
|---|
| 196 |
============== |
|---|
| 197 |
|
|---|
| 198 |
When you use Apache/mod_python, errors will be caught by Django -- in other |
|---|
| 199 |
words, they won't propagate to the Apache level and won't appear in the Apache |
|---|
| 200 |
``error_log``. |
|---|
| 201 |
|
|---|
| 202 |
The exception for this is if something is really wonky in your Django setup. In |
|---|
| 203 |
that case, you'll see an "Internal Server Error" page in your browser and the |
|---|
| 204 |
full Python traceback in your Apache ``error_log`` file. The ``error_log`` |
|---|
| 205 |
traceback is spread over multiple lines. (Yes, this is ugly and rather hard to |
|---|
| 206 |
read, but it's how mod_python does things.) |
|---|
| 207 |
|
|---|
| 208 |
If you get a segmentation fault |
|---|
| 209 |
=============================== |
|---|
| 210 |
|
|---|
| 211 |
If Apache causes a segmentation fault, there are two probable causes, neither |
|---|
| 212 |
of which has to do with Django itself. |
|---|
| 213 |
|
|---|
| 214 |
1. It may be because your Python code is importing the "pyexpat" module, |
|---|
| 215 |
which may conflict with the version embedded in Apache. For full |
|---|
| 216 |
information, see `Expat Causing Apache Crash`_. |
|---|
| 217 |
2. It may be because you're running mod_python and mod_php in the same |
|---|
| 218 |
Apache instance, with MySQL as your database backend. In some cases, |
|---|
| 219 |
this causes a known mod_python issue due to version conflicts in PHP and |
|---|
| 220 |
the Python MySQL backend. There's full information in the |
|---|
| 221 |
`mod_python FAQ entry`_. |
|---|
| 222 |
|
|---|
| 223 |
If you continue to have problems setting up mod_python, a good thing to do is |
|---|
| 224 |
get a barebones mod_python site working, without the Django framework. This is |
|---|
| 225 |
an easy way to isolate mod_python-specific problems. `Getting mod_python Working`_ |
|---|
| 226 |
details this procedure. |
|---|
| 227 |
|
|---|
| 228 |
The next step should be to edit your test code and add an import of any |
|---|
| 229 |
Django-specific code you're using -- your views, your models, your URLconf, |
|---|
| 230 |
your RSS configuration, etc. Put these imports in your test handler function |
|---|
| 231 |
and access your test URL in a browser. If this causes a crash, you've confirmed |
|---|
| 232 |
it's the importing of Django code that causes the problem. Gradually reduce the |
|---|
| 233 |
set of imports until it stops crashing, so as to find the specific module that |
|---|
| 234 |
causes the problem. Drop down further into modules and look into their imports, |
|---|
| 235 |
as necessary. |
|---|
| 236 |
|
|---|
| 237 |
.. _Expat Causing Apache Crash: http://www.dscpl.com.au/articles/modpython-006.html |
|---|
| 238 |
.. _mod_python FAQ entry: http://modpython.org/FAQ/faqw.py?req=show&file=faq02.013.htp |
|---|
| 239 |
.. _Getting mod_python Working: http://www.dscpl.com.au/articles/modpython-001.html |
|---|