I want to setup a catchall subdomain routing system where the subdomain is the user's profile and the domain can be anything so it doesnt have to be set based on the server it is running on.
what I have right now isnt routing I just tried to use a regex to catch everything after the subdomains.
routes.DomainRoute('<subdomain>.preset-sub.<.*>', [
webapp2.Route('/<page_url:\w+>', handler = SubHandler),
]),
so I want to be able to goto a page like username.preset-sub.localhost.com/ and have it be routed to that handler.