modwsgi

Python WSGI adapter module for Apache.

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

Ubuntu installation 12.04

Create file /var/www/test.wsgi

   1 def application(environ, start_response):
   2     status = '200 OK'
   3     output = 'Hello World! Mod WSGI running'
   4 
   5     response_headers = [('Content-type', 'text/plain'),
   6                         ('Content-Length', str(len(output)))]
   7     start_response(status, response_headers)
   8 
   9     return [output]

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

WSGIScriptAlias /test /var/www/test.wsgi

Slackware 14 installation

Edit file /etc/httpd/httpd.conf and add

Include /etc/httpd/mod_wsgi.conf
Include /etc/httpd/vhosts.conf

Edit file /etc/httpd/mod_wsgi.conf and add

LoadModule wsgi_module /usr/lib/httpd/modules/mod_wsgi.so

Restart apache with

Check if mod_wsgi module is loaded with

Create test wsgi app

Create file /var/www/htdocs/test/test.wsgi

   1 def application(environ, start_response):
   2     start_response('200 OK', [('Content-Type', 'text/html')])
   3     yield '<html><body><h1>Test WSGI</h1></body></html>'

Create virtual host in /etc/httpd/vhosts.conf

   1 <VirtualHost *:80>
   2     ServerName localhosttestwsgi
   3     DocumentRoot "/var/www/htdocs/test"
   4     WSGIScriptAlias / /var/www/htdocs/test/test.wsgi
   5     ErrorLog /var/log/localhosttestwsgi-error_log
   6     CustomLog /var/log/localhosttestwsgi-access_log common
   7     <Directory "/var/www/htdocs/test">
   8       Require local
   9     </Directory>
  10 </VirtualHost>

Add host to /etc/hosts

127.0.0.1 localhosttestwsgi

Restart apache

Open url http://localhosttestwsgi/ and see if the string Test WSGI appears.

Python/modwsgi (last edited 2016-02-27 18:58:39 by 1)