Connecting AppEngine Module to a custom DNS

五迷三道 提交于 2019-12-13 05:58:39

问题


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


回答1:


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

  - url: "m.myappcustomdomain.com/*"
    module: your_mobile_module


来源:https://stackoverflow.com/questions/32097764/connecting-appengine-module-to-a-custom-dns

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!