0

I've been having troubles trying to connect a module to my custom domain.

I works perfectly on the appspot domain but not on my custom domain.

E.G.

http://m.myappname.appspot.com calls the dispatch.yaml file which routes the request to my mobile frontend

BUT

http://m.myappcustomdomain.com serves the default module (app.yaml)

Any help will be highly appreciated.

Thanks

DLastCodeBender
  • 327
  • 1
  • 13

1 Answers1

1

You could an entry like this in your dispatch.yaml file:

  - url: "m.myappcustomdomain.com/*"
    module: your_mobile_module
Dan Cornilescu
  • 39,470
  • 12
  • 57
  • 97