如何在谷歌应用程序引擎网站https上制作所有处理程序(页面)

时间:2012-08-14 05:48:02

标签: python google-app-engine

您好我想在google app引擎项目中将我的所有处理程序加载为https。任何人都可以知道这样做的方法吗?有没有我们可以申请所有处理程序的配置?

2 个答案:

答案 0 :(得分:1)

在您的app.yaml中,对于您要求https的每个处理程序使用secure: always。例如:

handlers:

- url: /youraccount/.*
  script: accounts.py
  login: required
  secure: always

您可以在文档中read more about the secure URLs

答案 1 :(得分:1)

你使用webapp2吗?使用webapp2,您可以指定路由允许的URI方案:

webapp2.Route(r'/products', handler='handlers.ProductsHandler', name='products-list', schemes=['https'])

请参阅:http://webapp-improved.appspot.com/guide/routing.html