当我的应用程序通过 Google 个应用程序运行时,如何通过子域提供应用程序引擎版本?
How do I serve an app engine version via subdomain when my app runs through Google Apps?
我正在尝试使用子域为 Google App Engine 和 Google Apps 提供匹配的版本 ID。我已经阅读了文档,但我仍然不清楚。
- 在这个关于自定义域的页面上,它说我处于使用 Google 应用程序的特殊情况。 test.example.com -> 加载 "test" 版本的应用程序。
https://cloud.google.com/appengine/docs/domain -
Note that the instructions on this page are for App Engine apps that use an ordinary HTTP connection and are not served through Google Apps. Here are some related procedures that require different instructions:
这让我来到这里 https://support.google.com/a/answer/91080
似乎在 Google Apps 中添加此子域的唯一方法是 Sites URL 字段。
站点 URL 是否与 App Engine 版本 ID 相对应?
如果您需要 https,您只需要使用 Google 应用将应用引擎应用映射到域。目前,Google 应用程序是您上传 SSL 证书的唯一途径 - 因此存在此限制。
如果您确实通过 google 应用将您的 appengine 应用映射到一个域,您可以使用通配符子域映射来完成您想要的操作。 Read more here..
整个过程是乏味、缓慢和痛苦的,而且只有在不混淆的情况下才会如此,所以请留出好几个小时来进行所有更改并等待 DNS 传播。
我正在尝试使用子域为 Google App Engine 和 Google Apps 提供匹配的版本 ID。我已经阅读了文档,但我仍然不清楚。
- 在这个关于自定义域的页面上,它说我处于使用 Google 应用程序的特殊情况。 test.example.com -> 加载 "test" 版本的应用程序。
https://cloud.google.com/appengine/docs/domain -
Note that the instructions on this page are for App Engine apps that use an ordinary HTTP connection and are not served through Google Apps. Here are some related procedures that require different instructions:
这让我来到这里 https://support.google.com/a/answer/91080
似乎在 Google Apps 中添加此子域的唯一方法是 Sites URL 字段。
站点 URL 是否与 App Engine 版本 ID 相对应?
如果您需要 https,您只需要使用 Google 应用将应用引擎应用映射到域。目前,Google 应用程序是您上传 SSL 证书的唯一途径 - 因此存在此限制。
如果您确实通过 google 应用将您的 appengine 应用映射到一个域,您可以使用通配符子域映射来完成您想要的操作。 Read more here..
整个过程是乏味、缓慢和痛苦的,而且只有在不混淆的情况下才会如此,所以请留出好几个小时来进行所有更改并等待 DNS 传播。