modwsgi.txt 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. ==========================================
  2. How to use Django with Apache and mod_wsgi
  3. ==========================================
  4. Deploying Django with Apache_ and `mod_wsgi`_ is a tried and tested way to get
  5. Django into production.
  6. .. _Apache: http://httpd.apache.org/
  7. .. _mod_wsgi: http://code.google.com/p/modwsgi/
  8. mod_wsgi is an Apache module which can host any Python WSGI_ application,
  9. including Django. Django will work with any version of Apache which supports
  10. mod_wsgi.
  11. .. _WSGI: http://www.wsgi.org
  12. The `official mod_wsgi documentation`_ is fantastic; it's your source for all
  13. the details about how to use mod_wsgi. You'll probably want to start with the
  14. `installation and configuration documentation`_.
  15. .. _official mod_wsgi documentation: http://code.google.com/p/modwsgi/
  16. .. _installation and configuration documentation: http://code.google.com/p/modwsgi/wiki/InstallationInstructions
  17. Basic configuration
  18. ===================
  19. Once you've got mod_wsgi installed and activated, edit your Apache server's
  20. ``httpd.conf`` file and add the following. If you are using a version of Apache
  21. older than 2.4, replace ``Require all granted`` with ``Allow from all`` and
  22. also add the line ``Order deny,allow`` above it.
  23. .. code-block:: apache
  24. WSGIScriptAlias / /path/to/mysite.com/mysite/wsgi.py
  25. WSGIPythonPath /path/to/mysite.com
  26. <Directory /path/to/mysite.com/mysite>
  27. <Files wsgi.py>
  28. Require all granted
  29. </Files>
  30. </Directory>
  31. The first bit in the ``WSGIScriptAlias`` line is the base URL path you want to
  32. serve your application at (``/`` indicates the root url), and the second is the
  33. location of a "WSGI file" -- see below -- on your system, usually inside of
  34. your project package (``mysite`` in this example). This tells Apache to serve
  35. any request below the given URL using the WSGI application defined in that
  36. file.
  37. The ``WSGIPythonPath`` line ensures that your project package is available for
  38. import on the Python path; in other words, that ``import mysite`` works.
  39. The ``<Directory>`` piece just ensures that Apache can access your
  40. :file:`wsgi.py` file.
  41. Next we'll need to ensure this :file:`wsgi.py` with a WSGI application object
  42. exists. As of Django version 1.4, :djadmin:`startproject` will have created one
  43. for you; otherwise, you'll need to create it. See the :doc:`WSGI overview
  44. documentation</howto/deployment/wsgi/index>` for the default contents you
  45. should put in this file, and what else you can add to it.
  46. .. warning::
  47. If multiple Django sites are run in a single mod_wsgi process, all of them
  48. will use the settings of whichever one happens to run first. This can be
  49. solved with a minor edit to ``wsgi.py`` (see comment in the file for
  50. details), or by :ref:`using mod_wsgi daemon mode<daemon-mode>` and ensuring
  51. that each site runs in its own daemon process.
  52. Using a virtualenv
  53. ==================
  54. If you install your project's Python dependencies inside a `virtualenv`_,
  55. you'll need to add the path to this virtualenv's ``site-packages`` directory to
  56. your Python path as well. To do this, add an additional path to your
  57. ``WSGIPythonPath`` directive, with multiple paths separated by a colon (``:``)
  58. if using a UNIX-like system, or a semicolon (``;``) if using Windows. If any
  59. part of a directory path contains a space character, the complete argument
  60. string to ``WSGIPythonPath`` must be quoted::
  61. WSGIPythonPath /path/to/mysite.com:/path/to/your/venv/lib/python3.X/site-packages
  62. Make sure you give the correct path to your virtualenv, and replace
  63. ``python3.X`` with the correct Python version (e.g. ``python3.4``).
  64. .. _virtualenv: http://www.virtualenv.org
  65. .. _daemon-mode:
  66. Using mod_wsgi daemon mode
  67. ==========================
  68. "Daemon mode" is the recommended mode for running mod_wsgi (on non-Windows
  69. platforms). To create the required daemon process group and delegate the
  70. Django instance to run in it, you will need to add appropriate
  71. ``WSGIDaemonProcess`` and ``WSGIProcessGroup`` directives. A further change
  72. required to the above configuration if you use daemon mode is that you can't
  73. use ``WSGIPythonPath``; instead you should use the ``python-path`` option to
  74. ``WSGIDaemonProcess``, for example::
  75. WSGIDaemonProcess example.com python-path=/path/to/mysite.com:/path/to/venv/lib/python2.7/site-packages
  76. WSGIProcessGroup example.com
  77. See the official mod_wsgi documentation for `details on setting up daemon
  78. mode`_.
  79. .. _details on setting up daemon mode: http://code.google.com/p/modwsgi/wiki/QuickConfigurationGuide#Delegation_To_Daemon_Process
  80. .. _serving-files:
  81. Serving files
  82. =============
  83. Django doesn't serve files itself; it leaves that job to whichever Web
  84. server you choose.
  85. We recommend using a separate Web server -- i.e., one that's not also running
  86. Django -- for serving media. Here are some good choices:
  87. * Nginx_
  88. * A stripped-down version of Apache_
  89. If, however, you have no option but to serve media files on the same Apache
  90. ``VirtualHost`` as Django, you can set up Apache to serve some URLs as
  91. static media, and others using the mod_wsgi interface to Django.
  92. This example sets up Django at the site root, but explicitly serves
  93. ``robots.txt``, ``favicon.ico``, any CSS file, and anything in the
  94. ``/static/`` and ``/media/`` URL space as a static file. All other URLs
  95. will be served using mod_wsgi::
  96. Alias /robots.txt /path/to/mysite.com/static/robots.txt
  97. Alias /favicon.ico /path/to/mysite.com/static/favicon.ico
  98. AliasMatch ^/([^/]*\.css) /path/to/mysite.com/static/styles/$1
  99. Alias /media/ /path/to/mysite.com/media/
  100. Alias /static/ /path/to/mysite.com/static/
  101. <Directory /path/to/mysite.com/static>
  102. Require all granted
  103. </Directory>
  104. <Directory /path/to/mysite.com/media>
  105. Require all granted
  106. </Directory>
  107. WSGIScriptAlias / /path/to/mysite.com/mysite/wsgi.py
  108. <Directory /path/to/mysite.com/mysite>
  109. <Files wsgi.py>
  110. Require all granted
  111. </Files>
  112. </Directory>
  113. If you are using a version of Apache older than 2.4, replace
  114. ``Require all granted`` with ``Allow from all`` and also add the line
  115. ``Order deny,allow`` above it.
  116. .. _Nginx: http://wiki.nginx.org/Main
  117. .. _Apache: http://httpd.apache.org/
  118. .. More details on configuring a mod_wsgi site to serve static files can be found
  119. .. in the mod_wsgi documentation on `hosting static files`_.
  120. .. _hosting static files: http://code.google.com/p/modwsgi/wiki/ConfigurationGuidelines#Hosting_Of_Static_Files
  121. .. _serving-the-admin-files:
  122. Serving the admin files
  123. =======================
  124. When :mod:`django.contrib.staticfiles` is in :setting:`INSTALLED_APPS`, the
  125. Django development server automatically serves the static files of the
  126. admin app (and any other installed apps). This is however not the case when you
  127. use any other server arrangement. You're responsible for setting up Apache, or
  128. whichever Web server you're using, to serve the admin files.
  129. The admin files live in (:file:`django/contrib/admin/static/admin`) of the
  130. Django distribution.
  131. We **strongly** recommend using :mod:`django.contrib.staticfiles` to handle the
  132. admin files (along with a Web server as outlined in the previous section; this
  133. means using the :djadmin:`collectstatic` management command to collect the
  134. static files in :setting:`STATIC_ROOT`, and then configuring your Web server to
  135. serve :setting:`STATIC_ROOT` at :setting:`STATIC_URL`), but here are three
  136. other approaches:
  137. 1. Create a symbolic link to the admin static files from within your
  138. document root (this may require ``+FollowSymLinks`` in your Apache
  139. configuration).
  140. 2. Use an ``Alias`` directive, as demonstrated above, to alias the appropriate
  141. URL (probably :setting:`STATIC_URL` + ``admin/``) to the actual location of
  142. the admin files.
  143. 3. Copy the admin static files so that they live within your Apache
  144. document root.
  145. Authenticating against Django's user database from Apache
  146. =========================================================
  147. Django provides a handler to allow Apache to authenticate users directly
  148. against Django's authentication backends. See the :doc:`mod_wsgi authentication
  149. documentation </howto/deployment/wsgi/apache-auth>`.
  150. If you get a UnicodeEncodeError
  151. ===============================
  152. If you're taking advantage of the internationalization features of Django (see
  153. :doc:`/topics/i18n/index`) and you intend to allow users to upload files, you must
  154. ensure that the environment used to start Apache is configured to accept
  155. non-ASCII file names. If your environment is not correctly configured, you
  156. will trigger ``UnicodeEncodeError`` exceptions when calling functions like
  157. the ones in :mod:`os.path` on filenames that contain non-ASCII characters.
  158. To avoid these problems, the environment used to start Apache should contain
  159. settings analogous to the following::
  160. export LANG='en_US.UTF-8'
  161. export LC_ALL='en_US.UTF-8'
  162. Consult the documentation for your operating system for the appropriate syntax
  163. and location to put these configuration items; ``/etc/apache2/envvars`` is a
  164. common location on Unix platforms. Once you have added these statements
  165. to your environment, restart Apache.