vote up 2 vote down star

How can I work with sub domain in google app engine (python).

I wanna get first domain part and take some action (handler).

Example:
     product.example.com -> send it to products handler
     user.example.com -> send it to users handler

Actually, using virtual path I have this code:

  application = webapp.WSGIApplication(
    [('/', IndexHandler),
     ('/product/(.*)', ProductHandler),
     ('/user/(.*)', UserHandler)
  ]

Did I make my self clear? (sorry poor english)

flag

1 Answer

vote up 4 vote down check

WSGIApplication isn't capable of routing based on domain. Instead, you need to create a separate application for each subdomain, like this:

applications = {
  'product.example.com': webapp.WSGIApplication([
    ('/', IndexHandler),
    ('/(.*)', ProductHandler)]),
  'user.example.com': webapp.WSGIApplication([
    ('/', IndexHandler),
    ('/(.*)', UserHandler)]),
}

def main():
  run_wsgi_app(applications[os.environ['HTTP_HOST']])

if __name__ == '__main__':
  main()

Alternately, you could write your own WSGIApplication subclass that knows how to handle multiple hosts.

link|flag
Thank you! Do you have some sample of this sub WSGIApplication to me? I'm stating with python... – Zote May 8 at 12:04
Check out the source for the current one at code.google.com/p/googleappengine/… - modifying the call method to take into account the hostname should be fairly straightforward. – Nick Johnson May 8 at 14:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.