Hi John,
It doesn't really matter where you place your application code- just
don't put it in a place accessible by your web server, so nobody can
access your source code.
I have apache configured to serve php websites from /var/sharedwww/
site1/www, but my django site resides in /var/sharedwww/site2/<project
name>. I basically have svn repos on my server, and I just cd'd to /
var/sharedwww/site2 and checked out my repository. So eventually my
application layout will be as follows:
/var/sharedwww/site2/
-------------------------------<project_name> (django code resides in
this directory)
-------------------------------media
-------------------------------logs
-------------------------------django.wsgi

Of course, webserver is configured not to show any python code in this
directory. You can read about django deployment on apache with
mod_wsgi here: 
http://docs.djangoproject.com/en/dev/howto/deployment/modwsgi/#howto-deployment-modwsgi


Reinis

On 4 nov., 06:19, JohnL <john.lamber...@gmail.com> wrote:
> Hi All,
>
> I just joined linode and followed there instructions in setting up
> Django athttp://library.linode.com/lamp-guides/ubuntu-9.10-karmic/.
>
> <VirtualHost *:80>
>      ServerAdmin squ...@bucknell.net
>      ServerName bucknell.net
>      ServerAliaswww.bucknell.net
>      DocumentRoot /srv/www/bucknell.net/public_html/
>      ErrorLog /srv/www/bucknell.net/logs/error.log
>      CustomLog /srv/www/bucknell.net/logs/access.log combined
> </VirtualHost>
>
> My question is where do I place my django application files?  How can
> I setup something like my development machine where I have a
> repository on assembla.com where I can check in and out easily to
> deploy?
>
> Thank you,
> John

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
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