Re: Several domains, one django project

2005-09-29 Thread Adrian Holovaty
On 9/29/05, Simon Willison <[EMAIL PROTECTED]> wrote: > There is however a nasty gotcha: you need to set a different > PythonInterpreter for each domain, or Bad Things can happen. > > http://www.djangoproject.com/documentation/modpython/#multiple-django- > installations-on-the-same-apache Note th

Re: Several domains, one django project

2005-09-29 Thread Simon Willison
On 29 Sep 2005, at 16:10, Adrian Holovaty wrote: Yes, this is entirely possible -- it's how Django is used at World Online. You'll just need to create a separate settings file for each domain, and just point each VirtualHost in your Apache configuration at the appropriate settings file. Ther

Re: Several domains, one django project

2005-09-29 Thread Tau
Seems even easier than I thought. Thanks.

Re: Several domains, one django project

2005-09-29 Thread Adrian Holovaty
On 9/29/05, Tau <[EMAIL PROTECTED]> wrote: > Is it possible to share a project among several domains? > Each domain should have different templates and media files. I don't > care about the models, I use XML. > What is the recommended mod_python configuration? Yes, this is entirely possible -- it

Re: Several domains, one django project

2005-09-29 Thread Simon Willison
On 29 Sep 2005, at 15:20, Tau wrote: Is it possible to share a project among several domains? Each domain should have different templates and media files. I don't care about the models, I use XML. What is the recommended mod_python configuration? Yes - in fact Django was designed for this kind

Several domains, one django project

2005-09-29 Thread Tau
Is it possible to share a project among several domains? Each domain should have different templates and media files. I don't care about the models, I use XML. What is the recommended mod_python configuration? Best regards.