I've finished making a site in django called 'kazbah', and I'm trying to deploy.
All the code for the kazbah site is in /home/git/DjangoProjects/kazbah and my httpd.conf looks like:
<Location "/">
SetHandler python-program
PythonHandler django.core.handlers.modpython
SetEnv DJANGO_SETTINGS_MODULE kazbah.settings
PythonDebug On
PythonPath "['/home/git/DjangoProjects'] + sys.path"
</Location>
I get the following error though:
ImportError: Could not import settings 'kazbah.settings' (Is it on sys.path? Does it have syntax errors?): No module named kazbah.settings
Any idea why this noob is failing?