开发者

Running Multiple Google App Engine Apps from one Domain

I would like to have the following:

myroots开发者_开发知识库ite.appspot.com
myrootsite.appspot.com/app1
myrootsite.appspot.com/app2
etc.

Is this possible? I know I could just make /app1 be handled by app1, but then the redirects and everything wouldn't work unless I explicitly used redirect('/app1') instead of the current redirect('/').

Is there a way I can just upload my current apps (app1, app2, etc.) to the root site and have them work regularly?

Thanks in advance


You can only have one application per site. This means you'll need:

app1.appspot.com
app2.appspot.com


You can register one App Engine application ID and have each subdirectory do different things. For example, have all URLs under /app1 do one thing, and all URLs under /app2 do another thing.

However, they'll have to be deployed together, and will eat away at the same quota. They will, in fact, be one application, with URLs that do two completely different things.

Otherwise, what Taylor says is correct, you can only have separate subdomains (either on appspot.com or as subdomains on your own domain)


You can't have multiple apps on a domain without a reverse proxy - but you can have multiple 'subapps' - just configure each one independently using app.yaml / web.xml. They'll share the same datastore and memcache, but otherwise can be treated as separate components.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜