i did't modify httpd.conf
i just included the below line in /etc/httpd/conf.d/python.conf

LoadModule python_module modules/mod_python.so

<Location "/">
    SetHandler python-program
    PythonHandler django.core.handlers.modpython
    SetEnv DJANGO_SETTINGS_MODULE mysite.settings
    PythonOption django.root /mysite
    PythonDebug On
    PythonAutoReload On
    PythonPath "['/var/www/html'] + sys.path"
</Location>


and  mysite directory i have the below files
__init__.py  manage.py  settings.py  templates  urls.py  views.py


so, which file should i touch ?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/ifGSAsCZWlUJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to