您好我想在google app引擎项目中将我的所有处理程序加载为https。任何人都可以知道这样做的方法吗?有没有我们可以申请所有处理程序的配置?
答案 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'])