I'm pretty sure you can do this with routes.py
routers = dict(
BASE = dict(
domains = {
'domain1.com' : 'app/contoller1',
'domain2.com' : 'app/controller2',
}
),
)
On Monday, October 22, 2012 10:48:19 AM UTC-7, Tito Garrido wrote:
>
> Hi Folks!
>
> Is possible to use multiple domains on the same application? I mean, each
> domain would point to the your controller. I will have similar websites
> that needs to share the 'upload' directory...
>
> Example:
> domain1.com: init/controler1
> domain2.com: init/controler3
> domain3.com: init/controler3
>
> Thanks!
>
> Tito
>
> --
>
> Linux User #387870
> .........____
> .... _/_õ|__|
> ..º[ .-.___.-._| . . . .
> .__( o)__( o).:_______
>
--