Just for reference, here is what I had did to prepare the python + apache + mod_wsgi environment.
1. Download http://www.python.org/ftp/python/2.7/python-2.7.msi 2. Add System Path : C:\Python27\Scripts;C:\Python27;C:\Program Files\PostgreSQL\8.4\bin 3. Download http://pypi.python.org/packages/2.7/s/setuptools/setuptools-0.6c11.win32-py2.7.exe#md5=57e1e64f6b7c7f1d2eddfc9746bbaf20 4. easy_install psycopg2 5. easy_install mako 6. Download http://lawyersdb.com/mirrors/apache//httpd/binaries/win32/httpd-2.2.17-win32-x86-no_ssl.msi 7. Download http://code.google.com/p/modwsgi/downloads/detail?name=mod_wsgi-win32-ap22py27-3.3.so 8. copy mod_wsgi-win32-ap22py27-3.3.so to C:\Program Files\Apache Software Foundation\Apache2.2\modules 9. Add lines at the end of the file C:\Program Files\Apache Software Foundation\Apache2.2\conf\httpd.conf LoadModule wsgi_module modules/mod_wsgi-win32- ap22py27-3.3.so WSGIScriptAlias / "C:/ProjectsSandBox/web/" <Directory "C:/ProjectsSandBox/web"> AllowOverride None Options None Order deny,allow Allow from all </Directory> -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/modwsgi?hl=en.
