我在应用引擎上设置了常规应用,以appspot.com结尾。我想为一个页面appspot.com/securepage设置HTTPS。我该怎么做?
编辑: 我添加了安全参数。现在我的app.yaml看起来像这样(但它仍然不起作用):
application: myapp
version: 1
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /static
static_dir: static
- url: /.*
script: myapp.application
- url: /_ah/mail/.+
script: handle_incoming_email.app
login: admin
- url: /securepage
script: myapp.application
secure: always
libraries:
- name: webapp2
version: latest
- name: jinja2
version: latest
inbound_services:
- mail
我映射到这样的安全页面:
application = webapp2.WSGIApplication([
('/', Home),
('/securepage', RenderSecurePage),
LogSenderHandler.mapping()],
debug=True)
答案 0 :(得分:2)
您需要做的就是将secure: always
添加到您希望通过https连接访问的每个处理程序。
handlers:
- url: /page1
script: page1.app
secure: always
当访问者访问http://your-app-id.appspot.comm/page1
时,他们会自动重定向到安全版https://your-app-id.appspot.comm/page1
如果需要,您也可以执行相反操作,以确保仅使用secure: never
handlers:
- url: /page2
script: page2.app
secure: never
有关详细信息,请参阅this document。