addons-server/docs/topics/production.rst

80 строки
2.4 KiB
ReStructuredText

.. _production:
=====================
Zamboni in Production
=====================
Getting Requirements
--------------------
Grab zamboni from github with ::
git clone git://github.com/mozilla/zamboni.git
git submodule update --init
You're going to need virtualenv and pip, but I'll let you figure that one out.
We rely on one compiled package, MySQLdb. It needs to link against the
mysql-dev headers, so install that one system-wide. The rest of our packages
should be installed in a virtualenv using pip. If you're oremj, do this::
pip install http://sm-hudson01.mozilla.org:8080/job/addons.mozilla.org/ws/packages/amo.pybundle
Otherwise, get them from the internet like this::
pip install -r requirements-prod.txt
Configuration
-------------
We keep most of our config in ``settings.py`` under version control. Local
config can be overridden in ``settings_local.py``. This template, inlined
below, can be found at :src:`docs/settings/settings_local.prod.py`:
.. literalinclude:: /settings/settings_local.prod.py
Setting up mod_wsgi
-------------------
https://docs.djangoproject.com/en/dev/howto/deployment/wsgi/
http://code.google.com/p/modwsgi/wiki/QuickConfigurationGuide
Here's a basic httpd.conf snippet that I used to get zamboni running on my Mac::
# WSGI
LoadModule wsgi_module modules/mod_wsgi.so
WSGIPythonHome /Users/jeff/.virtualenvs/baseline
# TODO: /media and /admin-media
<VirtualHost *:80> #*
ServerName 127.0.0.1
WSGIScriptAlias / /Users/jeff/dev/zamboni/wsgi/zamboni.wsgi
WSGIDaemonProcess zamboni processes=8 threads=1 \
python-path=/Users/jeff/.virtualenvs/zamboni/lib/python2.6/site-packages
WSGIProcessGroup zamboni
<Directory /Users/jeff/dev/zamboni/wsgi>
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
``WSGIPythonHome`` points at a pristine virtual environment. That came from
http://code.google.com/p/modwsgi/wiki/VirtualEnvironments.
``WSGIScriptAlias`` points to ``/wsgi/zamboni.wsgi`` in the zamboni checkout.
``WSGIDaemonProcess`` creates 8 processes and 10 threads. Those numbers are
completely arbitrary. I'll update it when we know what works in production.
The ``python-path`` argument points to the site-packages directory of our
zamboni virtualenv.
.. note:: This doesn't include media or admin media yet.