I'm working on a project where I'll have many different 'users', and each 
should have it's own URL as a subdomain of my main domain.  i.e.:

http://joe.example.com
http://fred.example.com

Each of these will resolve to the same IP address, and ideally, the same
django app.  I'd like to use django's sites middleware; is there a way
to set settings.SITE_ID dynamically?

Ideally, something like this in settings.py:

    import django.contrib.sites.models.Site as Site
    SITE_ID = Site.get_object(name__iexeact = os.getenv("HTTP_HOST") ).id

But that seems to be a chicken-and-egg problem (the models can't access the 
database until the settings file is loaded..)

Any ideas?
--
Mike Cuddy ([EMAIL PROTECTED]), Programmer, Baritone, Daddy, Human.
Fen's Ende Software, Redwood City, CA, USA, Earth, Sol System, Milky Way.

    "The problem with defending the purity of the English language is
    that English is about as pure as a cribhouse whore. We don't just
    borrow words; on occasion, English has pursued other languages down
    alleyways to beat them unconscious and rifle their pockets for new
    vocabulary." -- James D. Nicoll

       Join CAUCE: The Coalition Against Unsolicited Commercial E-mail.
                          <http://www.cauce.org/>

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