2011-06-17 00:34:12 +08:00
|
|
|
============================
|
|
|
|
How to use Django with uWSGI
|
|
|
|
============================
|
|
|
|
|
|
|
|
.. highlight:: bash
|
|
|
|
|
|
|
|
uWSGI_ is a fast, self-healing and developer/sysadmin-friendly application
|
|
|
|
container server coded in pure C.
|
|
|
|
|
|
|
|
.. _uWSGI: http://projects.unbit.it/uwsgi/
|
|
|
|
|
2013-03-31 04:21:59 +08:00
|
|
|
.. seealso::
|
|
|
|
|
|
|
|
The uWSGI docs offer a `tutorial`_ covering Django, nginx, and uWSGI (one
|
|
|
|
possible deployment setup of many). The docs below are focused on how to
|
|
|
|
integrate Django with uWSGI.
|
|
|
|
|
|
|
|
.. _tutorial: https://uwsgi.readthedocs.org/en/latest/tutorials/Django_and_nginx.html
|
|
|
|
|
2011-06-17 00:34:12 +08:00
|
|
|
Prerequisite: uWSGI
|
|
|
|
===================
|
|
|
|
|
2012-03-03 01:16:52 +08:00
|
|
|
The uWSGI wiki describes several `installation procedures`_. Using pip, the
|
|
|
|
Python package manager, you can install any uWSGI version with a single
|
2012-03-03 17:11:54 +08:00
|
|
|
command. For example:
|
|
|
|
|
|
|
|
.. code-block:: bash
|
2011-06-17 00:34:12 +08:00
|
|
|
|
2012-03-03 01:16:52 +08:00
|
|
|
# Install current stable version.
|
2012-03-03 17:11:54 +08:00
|
|
|
$ sudo pip install uwsgi
|
2011-06-17 00:34:12 +08:00
|
|
|
|
2012-03-03 01:16:52 +08:00
|
|
|
# Or install LTS (long term support).
|
2012-03-03 17:11:54 +08:00
|
|
|
$ sudo pip install http://projects.unbit.it/downloads/uwsgi-lts.tar.gz
|
2011-06-17 00:34:12 +08:00
|
|
|
|
2012-02-25 07:24:30 +08:00
|
|
|
.. _installation procedures: http://projects.unbit.it/uwsgi/wiki/Install
|
2011-06-17 00:34:12 +08:00
|
|
|
|
2013-06-03 21:53:04 +08:00
|
|
|
.. warning::
|
|
|
|
|
|
|
|
Some distributions, including Debian and Ubuntu, ship an outdated version
|
|
|
|
of uWSGI that does not conform to the WSGI specification. Versions prior to
|
|
|
|
1.2.6 do not call ``close`` on the response object after handling a
|
|
|
|
request. In those cases the :data:`~django.core.signals.request_finished`
|
|
|
|
signal isn't sent. This can result in idle connections to database and
|
|
|
|
memcache servers.
|
|
|
|
|
2011-06-17 00:34:12 +08:00
|
|
|
uWSGI model
|
|
|
|
-----------
|
|
|
|
|
2012-03-03 01:16:52 +08:00
|
|
|
uWSGI operates on a client-server model. Your Web server (e.g., nginx, Apache)
|
2011-10-22 12:30:10 +08:00
|
|
|
communicates with a django-uwsgi "worker" process to serve dynamic content.
|
2012-02-25 07:24:30 +08:00
|
|
|
See uWSGI's `background documentation`_ for more detail.
|
2011-06-17 00:34:12 +08:00
|
|
|
|
2012-02-25 07:24:30 +08:00
|
|
|
.. _background documentation: http://projects.unbit.it/uwsgi/wiki/Background
|
2011-06-17 00:34:12 +08:00
|
|
|
|
2012-02-25 07:24:30 +08:00
|
|
|
Configuring and starting the uWSGI server for Django
|
|
|
|
----------------------------------------------------
|
2011-06-17 00:34:12 +08:00
|
|
|
|
2012-03-03 01:16:52 +08:00
|
|
|
uWSGI supports multiple ways to configure the process. See uWSGI's
|
2012-02-25 07:24:30 +08:00
|
|
|
`configuration documentation`_ and `examples`_
|
2011-06-17 00:34:12 +08:00
|
|
|
|
2012-02-25 07:24:30 +08:00
|
|
|
.. _configuration documentation: http://projects.unbit.it/uwsgi/wiki/Doc
|
|
|
|
.. _examples: http://projects.unbit.it/uwsgi/wiki/Example
|
2011-06-17 00:34:12 +08:00
|
|
|
|
2012-03-03 01:16:52 +08:00
|
|
|
Here's an example command to start a uWSGI server::
|
2011-06-17 00:34:12 +08:00
|
|
|
|
2012-07-06 17:10:27 +08:00
|
|
|
uwsgi --chdir=/path/to/your/project \
|
2012-03-29 04:28:13 +08:00
|
|
|
--module=mysite.wsgi:application \
|
2011-10-22 12:30:10 +08:00
|
|
|
--env DJANGO_SETTINGS_MODULE=mysite.settings \
|
2011-06-17 00:34:12 +08:00
|
|
|
--master --pidfile=/tmp/project-master.pid \
|
|
|
|
--socket=127.0.0.1:49152 \ # can also be a file
|
|
|
|
--processes=5 \ # number of worker processes
|
|
|
|
--uid=1000 --gid=2000 \ # if root, uwsgi can drop privileges
|
|
|
|
--harakiri=20 \ # respawn processes taking more than 20 seconds
|
|
|
|
--max-requests=5000 \ # respawn processes after serving 5000 requests
|
|
|
|
--vacuum \ # clear environment on exit
|
2012-03-03 01:16:52 +08:00
|
|
|
--home=/path/to/virtual/env \ # optional path to a virtualenv
|
2011-06-17 00:34:12 +08:00
|
|
|
--daemonize=/var/log/uwsgi/yourproject.log # background the process
|
|
|
|
|
2012-03-03 01:16:52 +08:00
|
|
|
This assumes you have a top-level project package named ``mysite``, and
|
2011-10-22 12:30:10 +08:00
|
|
|
within it a module :file:`mysite/wsgi.py` that contains a WSGI ``application``
|
2012-03-03 01:16:52 +08:00
|
|
|
object. This is the layout you'll have if you ran ``django-admin.py
|
2011-10-22 12:30:10 +08:00
|
|
|
startproject mysite`` (using your own project name in place of ``mysite``) with
|
2012-03-03 01:16:52 +08:00
|
|
|
a recent version of Django. If this file doesn't exist, you'll need to create
|
2011-10-22 12:30:10 +08:00
|
|
|
it. See the :doc:`/howto/deployment/wsgi/index` documentation for the default
|
2012-03-03 01:16:52 +08:00
|
|
|
contents you should put in this file and what else you can add to it.
|
2011-06-17 00:34:12 +08:00
|
|
|
|
2011-10-22 12:30:10 +08:00
|
|
|
The Django-specific options here are:
|
|
|
|
|
2012-03-03 01:16:52 +08:00
|
|
|
* ``chdir``: The path to the directory that needs to be on Python's import
|
|
|
|
path -- i.e., the directory containing the ``mysite`` package.
|
|
|
|
* ``module``: The WSGI module to use -- probably the ``mysite.wsgi`` module
|
|
|
|
that :djadmin:`startproject` creates.
|
|
|
|
* ``env``: Should probably contain at least ``DJANGO_SETTINGS_MODULE``.
|
|
|
|
* ``home``: Optional path to your project virtualenv.
|
2011-06-17 00:34:12 +08:00
|
|
|
|
|
|
|
Example ini configuration file::
|
|
|
|
|
|
|
|
[uwsgi]
|
|
|
|
chdir=/path/to/your/project
|
2012-03-29 04:28:13 +08:00
|
|
|
module=mysite.wsgi:application
|
2011-06-17 00:34:12 +08:00
|
|
|
master=True
|
|
|
|
pidfile=/tmp/project-master.pid
|
|
|
|
vacuum=True
|
|
|
|
max-requests=5000
|
2012-03-10 18:03:33 +08:00
|
|
|
daemonize=/var/log/uwsgi/yourproject.log
|
2011-06-17 00:34:12 +08:00
|
|
|
|
|
|
|
Example ini configuration file usage::
|
|
|
|
|
|
|
|
uwsgi --ini uwsgi.ini
|
|
|
|
|
2012-02-25 07:24:30 +08:00
|
|
|
See the uWSGI docs on `managing the uWSGI process`_ for information on
|
2013-07-17 18:50:40 +08:00
|
|
|
starting, stopping and reloading the uWSGI workers.
|
2011-06-17 00:34:12 +08:00
|
|
|
|
2012-02-25 07:24:30 +08:00
|
|
|
.. _managing the uWSGI process: http://projects.unbit.it/uwsgi/wiki/Management
|