ServerName: '127.0.1.1' DocumentRoot: '/var/www' URI: '/' Location: '/' Directory: None Filename: '/var/www/' PathInfo: ''I get this due to the PythonDebug On that's on my apache2.conf file, from which i've got these lines which normally set the server to append the django developped app (from what i understood) :
LoadModule python_module /usr/lib/apache2/modules/mod_python.soto help you out there, my settings.py file lives in /home/issam/Workspace/Django/DjangoCode/mysite/mysite
<Location "/">
SetHandler python-program
PythonHandler django.core.handlers.modpython
SetEnv DJANGO_SETTINGS_MODULE mysite.settings
PythonDebug On
PythonPath "['/home/issam/Workspace/Django/DjangoCode/', '/home/issam/Workspace/Django/DjangoCode/mysite/'] + sys.path"
</Location>
Well
I started discovering django through the djangobook.
I'll try wsgi and let you know.
Thabks for your help