I started new app on django, and configure http.conf file as :

WSGIScriptAlias /lret /home/goraya/lret/lret/apache/django.wsgi
<Directory /home/goraya/lret/lret/apache/>
Order allow,deny
Allow from all
</Directory>

and django.wsgi as:

import os
import sys

os.environ['DJANGO_SETTINGS_MODULE'] = 'lret.settings'

import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()
sys.path.append('/home/goraya/')

But got the error:
The requested URL /lret was not found on this server.

 please check where i am going wrong?

-- 
Satinderpal Singh

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to