On Jan 16, 2011, at 2:42 PM, Kenneth Lundström wrote:
>
> I just added:
>
> routers = dict(
> BASE = dict(
> domains = {
> 'economy.nudata.fi' : 'economy',
> 'testing.nudata.fi' : 'testapplication',
> }
> ),
> )
>
> but if if go to economy.nudata.fi I get to welcome.
Are you running the current trunk? There hasn't been a release with the new
router yet. Try adding the abc line below (note the comma); you should get a
complaint about an unknown key.
routers = dict(
BASE = dict(
abc = None,
domains = {
'economy.nudata.fi' : 'economy',
'testing.nudata.fi' : 'testapplication',
}
),
)