我在App Engine上设置了一个常规应用程序,以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)

最佳答案

您需要做的就是将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仅通过不安全的http:// URL访问URL。

handlers:
  - url: /page2
    script: page2.app
    secure: never


有关更多详细信息,请参见this document

10-07 18:27