如何在本地测试 AppEngine 中的多个域设置?

发布于 2024-10-27 18:44:22 字数 566 浏览 1 评论 0原文

在问题在 Google App Engine 中使用子域中,以下代码被建议。

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()

我的问题是如何在本地进行测试?当我在本地测试它时,主机是“localhost:8080”,而不是任何域。

In the question Working with subdomain in google app engine, the following code was suggested.

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()

My question is how do I test this locally? When I'm testing it locally, the host is "localhost:8080" and not any of the domains.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酷炫老祖宗 2024-11-03 18:44:22

Hosts 文件中创建两个新条目:

127.0.0.1       product.example.com
127.0.0.1       user.example.com

并在默认 Http 端口 80 上运行本地 GAE 应用程序。

如果由于某种原因,您无法在端口 80 上运行 GAE,您可以尝试修改 application.py 以匹配本地端口号,如下所示:

if os.environ['SERVER_SOFTWARE'].startswith('Dev'):
    PORT=':8080'
else:
    PORT=''

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

或者更好地修改 main 函数像这样(感谢@Nick的评论):

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

您应该准备好使用以下地址测试您的本地应用程序:
http://product.example.com:8080
http://user.example.com:8080

请记住切换回您的主机 文件能够到达生产服务器。

Create two new entries in your Hosts file:

127.0.0.1       product.example.com
127.0.0.1       user.example.com

and run your local GAE application on default Http port 80.

If, for some reason, you can't run GAE on port 80, you could try to modify your application.py to match the local port number with something like this:

if os.environ['SERVER_SOFTWARE'].startswith('Dev'):
    PORT=':8080'
else:
    PORT=''

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

Or even better modifying the main function like this (Thanks to @Nick's comment):

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

You should be ready to test your local application with the following addresses:
http://product.example.com:8080
http://user.example.com:8080

Remember to switch back your Hosts file to be able to reach the Production server.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文