This isn't Django-specific, but to simplify things, you may want to go
for:

mysite.com/blog
mysite.com/forums
mysite.com/custom

Since browsers send authentication based on the domain, if you use
different sub-domains for each app in a web site, it will be necessary
to login (albiet using the same credentials) for each application.

And then give that structure, you'd have one Django project with
multiple installed applications.

Also, speaking from experience, when managing a site with multiple
applications, if you can push the authentication part into it's own
thing (e.g. a standalone WSGI middleware and app), that can be
desirable, since you would be able to use the same credentials then if
one of your apps was a non-Django app. Although I don't have any
advice on what set-up to use to accomplish this ... it's still just
something on my own to-do list - to be able to login to a Plone app,
Django admin app, Grok app, JIRA, etc. all using the same set of
credentials. My user's complain "waaaa! we don't like logging in
repeatedly!" (they do all use the same accounts for these apps, but
they have to login separately for each one).



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