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

I'm uploading my first Django project to a Linux server, where I should put my project in the filesystem?

With a PHP, or ASP project, everything goes into /var/www, would it be ok to do the same and add my Django project to the /var/www folder?

share|improve this question
How will you serve django? wsgi? gunicorn etc? – Rickard Zachrisson Dec 11 '12 at 14:38
I will service it with wsgi plugin. – Spike Dec 11 '12 at 14:39
I use /srv/wsgi/site or /var/wsgi/site when on a debian-system. – Rickard Zachrisson Dec 11 '12 at 14:54
I simply use /sites/foo/, /sites/bar/ (each is a virtualenv) – Timmy O'Mahony Dec 11 '12 at 15:30
1  
There is no answer to this question. It's linux, it goes where you need it to go. I put mine in /var/django. Put it wherever it makes the most sense/is the most secure. – D.A Dec 11 '12 at 15:37

2 Answers

up vote 8 down vote accepted

In the Django tutorial it states:

Where should this code live?
If your background is in PHP, you're probably used to putting code under the Web server's document root (in a place such as /var/www). With Django, you don't do that. It's not a good idea to put any of this Python code within your Web server's document root, because it risks the possibility that people may be able to view your code over the Web. That's not good for security.

Put your code in some directory outside of the document root, such as /home/mycode.

share|improve this answer
thank you hayden – Spike Dec 11 '12 at 22:08

/var/www is a common place to locate a Django project, however it's not recommended for security reasons, see the answer by hayden.

share|improve this answer
5  
That's not recomended, it should live somewhere else away from the web server. See @hayden answer – F.C. Dec 11 '12 at 14:48

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.