I don't know what should be wrong, but I cannot map 2 apps to different subdomains in the same domain, my routes.py is like the follow:
#!/usr/bin/python #-*- coding: utf-8 -*- routers = dict( BASE = dict( domains = { 'sub1.AAA.com' : 'app1', 'sub2.AAA.com' : 'app2', } ) ) All works when there're just 1 app mapped (sub1<->app1) but it stop working when I add the second statement (sub2 <-> app2). I restart/stop/start apache after every change on routes.py I'm using webfaction, if that is useful to know.