python - Secure Always Parameter Is Ignored In Appengine -


when add secure: parameter in app.yaml, still not redirected https. https works when type in manually, , i'm testing on live server, treats website though secure: isn't there.

i tried map handlers in yaml file, still has no effect.

application: appname version: 1 runtime: python27 api_version: 1 threadsafe: yes  handlers: - url: /favicon\.ico   static_files: favicon.ico   upload: favicon\.ico   secure:  - url: /css   static_dir: css   secure:  - url: /fonts   static_dir: fonts   secure:  - url: /js   static_dir: js   secure:  - url: /img   static_dir: img   secure:  - url: .*   script: main.app   secure:  libraries: - name: webapp2   version: "2.5.2"  - name: jinja2   version: "2.6"  error_handlers:  - file: default_error.html 


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -