diff options
author | 藍挺瑋 <lantw44@gmail.com> | 2012-11-30 20:54:51 +0800 |
---|---|---|
committer | LAN-TW <lantw44@gmail.com> | 2012-11-30 20:54:51 +0800 |
commit | 747138adb9df3de25fbe96507aa7061c8e016090 (patch) | |
tree | 28a5a6d4a3c1cb4ec7edc4ee3da9f4036d7a5164 | |
parent | 4610654e53a434499fb7a7f6ec4aa82eb95477bb (diff) | |
download | inccalendar-747138adb9df3de25fbe96507aa7061c8e016090.tar.gz inccalendar-747138adb9df3de25fbe96507aa7061c8e016090.tar.zst inccalendar-747138adb9df3de25fbe96507aa7061c8e016090.zip |
啟用 HTTPS 功能
靜態檔案(css 和 js)不一定要使用 HTTPS
其餘資料傳送(python)的則強制使用 HTTPS
-rw-r--r-- | app.yaml | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -11,12 +11,16 @@ libraries: handlers: - url: /css static_dir: css + secure: optional - url: /js static_dir: js + secure: optional - url: /access/.* script: access/\1.app + secure: always - url: /.* script: main.app + secure: always |