Hey,

I am currently looking at installing multiple instances of Django on a server 
to use Django as a teaching and learning tool. 

What is the best way to go about this?

I want to minimise the amount of storage needed and optimize the performance of 
the server. 

I have heard that modwsgi can be used to specify different ports for each 
instance. 

I was a little concerned about using the same db for all the students, as if 
they make a bogus query, update or insert on the db the whole db could be 
altered unfavourably. 

Could the script used in this post be used to create subdomains for the users? 
Has this script has been written for just one instance of django? 

Is the easiest way going to be to create a directory for each user where a new 
instance of django is installed? 

Any help or advice would be greatly appreciated.

Thanks,

Sarah



----- Original Message -----
From: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
Date: Tuesday, April 1, 2008 12:31 pm
Subject: Re: Dynamic Subdomain Generation for Users
To: Django users <django-users@googlegroups.com>

> 
> Thanks, Dan!
> 
> Just what I needed.
> 
> On Mar 31, 5:58 pm, Dan Ellis <[EMAIL PROTECTED]> wrote:
> > Hi, Levi. I've just had a look through the code, and it 
> appears you're
> > in luck (at least in the trunk -- I haven't looked elsewhere). core/
> > handlers/base.py contains this line[1]:
> >
> >     # Get urlconf from request object, if available. 
>  Otherwise use
> > default
> >     urlconf = getattr(request, "urlconf", settings.ROOT_URLCONF)
> >
> > It would appear that if the request contains an attribute called
> > 'urlconf', that will be used instead of the default urls.py. 
> So all
> > you need is a request middleware[2] that examines
> > request.META["HTTP_HOST"] and sets the appropriate urlconf.
> >
> > Bah. On closer inspection of the docs, it appears this is already
> > documented[3]. Still, it was a satisfying search ;-)
> >
> > Hope this helps,
> > Dan
> >
> > 
> [1]http://code.djangoproject.com/browser/django/trunk/django/core/handle...> 
> [2]http://www.djangoproject.com/documentation/middleware/#process-request
> > 
> [3]http://www.djangoproject.com/documentation/url_dispatch/#how-django-p...
> > 
> 

Sarah Vardy
Research Computing Services
Griffith University, Nathan QLD
0402241794

--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to