On Nov 4, 4:19 am, 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
The configuration you have shown above will not serve Django at all. It is purely for static files. You should read the Django deployment documentation: http://docs.djangoproject.com/en/dev/howto/deployment/ Your code can live anywhere you like that is readable by your server, although preferably it shouldn't live under your DocumentRoot. -- DR. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---