On Nov 9, 2009, at 2:14 AM, John Mitchell wrote:

> How would I configure mod_wsgi?


http://www.google.com/search?rls=en&q=configure+mod_wsgi

Short version is you just:

1) install mod_wsgi
2) point mod_wsgi at your mapnik wsgi script (which I think you called  
'wmsWSGI.py')
  - mod_wsgi looks for is the variable named 'application' in that  
script
3) restart apache

To 'point' mod_wsgi you need to put a few configuration parameters in  
your apache conf like:

     WSGIScriptAlias /<url> /path/to/the/wsgi_app.py
     WSGIDaemonProcess <process name> user=<user> group=<group>  
processes=10 threads=1
     WSGIProcessGroup <process name>

Dane
_______________________________________________
Mapnik-users mailing list
[email protected]
https://lists.berlios.de/mailman/listinfo/mapnik-users

Reply via email to