[modwsgi] WSGIPythonPath not being followed

2010-07-23 Thread Nathan Smith
I'm trying to use mod_wsgi to serve a Django/Pinax site using a virtualenv, but have not had luck so far. It seems that my WSGIPythonHome directive is not being followed, because I get import errors, and on those, the system Python path is being shown, not my virtual env. When trying to access the

Re: [modwsgi] WSGIPythonPath not being followed

2010-07-23 Thread Bill Freeman
The pinax documents have sample .wsgi scripts and deployment configuration info that has worked for me. My .wsgi script, placed in a subdirectory of the directory looks like: import os, sys sys.stdout = sys.stderr from os.path import abspath, dirname,

[modwsgi] Re: WSGIPythonPath not being followed

2010-07-23 Thread Nathan Smith
On Jul 23, 12:40 pm, Bill Freeman ke1g...@gmail.com wrote: The pinax documents have sample .wsgi scripts and deployment configuration info that has worked for me.  My .wsgi script, placed in a subdirectory of the directory looks like: import os,