= modwsgi =
Python WSGI adapter module for Apache.

http://code.google.com/p/modwsgi/

== Ubuntu installation 12.04 ==
 * apt-get install libapache2-mod-wsgi
 * service apache2 restart

Create file /var/www/test.wsgi

{{{#!highlight python
def application(environ, start_response):
    status = '200 OK'
    output = 'Hello World! Mod WSGI running'

    response_headers = [('Content-type', 'text/plain'),
                        ('Content-Length', str(len(output)))]
    start_response(status, response_headers)

    return [output]
}}}

Add to file /etc/apache2/sites-available/default inside the Virtual host the following 

{{{
WSGIScriptAlias /test /var/www/test.wsgi
}}}