Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Django installation at /home/masi/mySite.

How can you set that the files at the folder */home/masi/public_html/mySite* uses the Django installation?

share|improve this question
We may need a bit more help here, Masi. Are you asking how to get Apache or some other webserver to use the Django install when running your app? Or are you talking about the local django dev server? – Jarret Hardie Apr 8 '09 at 13:39
@Jarret: I run Django on my server at Djangohosting.ch. – Masi Apr 8 '09 at 13:51

2 Answers

up vote 4 down vote accepted
<location "/">

    SetHandler python-program

    PythonHandler django.core.handlers.modpython

    SetEnv DJANGO_SETTINGS_MODULE myproject.settings

    PythonPath "['/home/masi/public_html'] + sys.path"

</location>

In http.conf the python path will specify the location of the django project.

Also http://www.djangoproject.com/ provides great documentation.

share|improve this answer
Thank you for the answer! – Masi Apr 8 '09 at 13:46
mod_python is deprecated, you should promote other way to deploy django, see : docs.djangoproject.com/en/1.4/howto/deployment/wsgi – cyberdelia Oct 21 '12 at 10:07

you can use .htaccess files too

SetHandler python-program 
PythonHandler django.core.handlers.modpython 
SetEnv DJANGO_SETTINGS_MODULE yourproject.settings 
PythonDebug On 

PythonPath "['/your/project/path'] + sys.path"
share|improve this answer
mod_python is deprecated, you should use mod_wsgi with apache, see : docs.djangoproject.com/en/1.4/howto/deployment/wsgi/modwsgi – cyberdelia Oct 21 '12 at 10:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.