On Jan 31, 4:51 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
> How would you go about using seperate subdomains for certain apps in a
> project? What I would like to do is something like this:
>
> urlpatterns = patterns('',
>     (r'^weblog\.[a-z0-9-]+\.[a-z0-9-]{3}',
> include('mysite.blog.urls')),
>     (r'^wiki\.[a-z0-9-]+\.[a-z0-9-]{3}', include('mysite.wiki.urls')),
>     (r'^code\.[a-z0-9-]+\.[a-z0-9-]{3}', include('mysite.code.urls')),
>     (r'^admin\.[a-z0-9-]+\.[a-z0-9-]{3}',
> include('django.contrib.admin.urls')),
> )
>
> This will of course not work as the matching is done against the file
> path and not the domainname.
>
> Cheers,
> Eivind Uggedal


I've thought about this too.  I haven't done anything but I think this
approach might work:

First, create the server aliases in the apache configuration for the
server, like:

ServerAlias code.example.com wiki.example.com admin.example.com

Then, use some middleware to 'inject' that sub-domain into the
request.path (is request.path writable?).  You might end up with:

__www__/
__wiki__/some/request/path/
__code__/another/path/

and url patterns like:

(r'^__www__/', include('apps.www.urls')),
(r'^__wiki__/', include('apps.wiki.urls')),
(r'^__code__/', include('apps.code.urls')),

That /seems/ like it should work.

I suppose you could also dig into the BaseHandler and the way it calls
the RegexURLResolver.resolve method, and pass it the full request
rather than just the path.  You'd probably need to change the
urlpatterns data structure, too.

Anyway, it's all just theory as I've never attempted any of this.  If
you give it a go, let us know as I like the idea of using sub-domains
rather than separate apache virtual servers.


--~--~---------~--~----~------------~-------~--~----~
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