1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
**************
mod_python
**************
.. image:: images/mod_python-logo.gif
.. topic:: Introduction
This tutorial shows you how to easily publish your PyAMF applications
with the `Apache 2 <http://httpd.apache.org>`_ webserver and
`mod_python <http://modpython.org>`_. Mod_python is an Apache module
that embeds the Python interpreter within the server. This was tested
with Python 2.4.3 and
`Ubuntu 6.06.1 LTS <https://wiki.ubuntu.com/DapperReleaseNotes>`_.
This tutorial assumes you already installed the Apache webserver
running (on 192.168.1.100). Flash applications will be able to access
your PyAMF remoting gateway on http://192.168.1.100/flashservices/gateway.
.. contents::
Download WSGI gateway for mod_python
====================================
Create a folder for your application:
.. code-block:: bash
mkdir /var/www/myApp
Grab the `WSGI gateway for mod_python
<http://www.aminus.net/browser/modpython_gateway.py>`_ and put it in your
application folder:
.. code-block:: bash
wget http://www.aminus.net/browser/modpython_gateway.py?format=raw
mv modpython_gateway.py?format=raw /var/www/myApp/wsgi.py
Create your PyAMF application
=============================
Create a startup file for your application in ``/var/www/myApp/startup.py``:
.. literalinclude:: ../examples/apache/mod_python.py
:linenos:
Make sure your Apache user (``www-data``) has access to your application
files.
Setup Apache virtual host
=========================
Create a new virtual host or modify an existing one:
.. literalinclude:: ../examples/apache/mod_python.vhost
:language: apache
:linenos:
Restart Apache
==============
That's it! Your Adobe Flash Player and AMF clients will now be able to
access your PyAMF application through http://192.168.1.100/flashservices/gateway.
Useful Resources
================
http://wiki.pylonshq.com/display/pylonscookbook/Production+deployment+using+mod_python
Production deployment using mod_python (pylonshq).
http://www.aminus.net/wiki/ModPythonGateway
ModPythonGateway.
http://www.modpython.org/live/mod_python-3.2.8/doc-html/dir-other-pp.html
mod_python manual for ``PYTHONPATH``.
|