2017-01-25 10 views
0

myapp.appspot.comにhttpsでアクセスしたいとします。 app.yamlログインしていないと、myapp.appspot.comのhttpsがFirefoxでエラーを表示します

私はこの設定を行っている:Firefoxでそれにアクセスする場合

- url: /.* 
    script: main.app 
    login: optional 
    secure: always 

、そのページにアクセスできるようにすることなく、私は、このエラーがスローされます。

Your connection is not secure 

The owner of www.myapp.appspot.com has configured their website improperly. 
To protect your information from being stolen, Firefox has not connected to this website. 

This site uses HTTP Strict Transport Security (HSTS) to specify that Firefox may only connect to it securely. 
As a result, it is not possible to add an exception for this certificate. 
  • 私はChromeを使って自分のWebをテストして、それが動作します。

は、私はApp Engineのドキュメントでこれを見つけた:

It is possible to use to use Strict-Transport-Security in your App engine. 
In order to add HTTP Strict-Transport-Security headers (HTST) 
to your app, you must be implement the headers within your app's code, 
not within your app's config file (app.yaml or appengine-web.xml). 

https://cloud.google.com/appengine/kb/#hsts

しかし、私はそれが何を意味するのか分かりません。

何が欠けていますか?

ありがとうございました。

+1

wwwを使わずに試してみましたか? – Aaron

+0

ありがとうございます。これはうまくいった................................................ ...... – mclzc

+0

本当に信じられない。これは超陽気です。 – mclzc

答えて

1

代わりの

https://www.myapp.appspot.com 

は、WWWなし

https://myapp.appspot.com 

すなわちを試してみてください。私はGAEがバージョン番号の場合を除いてサブサブドメインをサポートしていないと信じています。

関連する問題