Find out what resources are not going over HTTPS

前端 未结 13 2221
花落未央
花落未央 2020-12-08 12:49

I have an ASP.NET site which should transport completely over HTTPS. However, in Google Chrome I get a warning that the page includes resources which are not secure. How can

13条回答
  •  执笔经年
    2020-12-08 13:10

    I just discovered same behaviour in chrome (firefox showed a green lock), even though all resources were loaded via https.

    The reason in my case was that the server supported broken (google poodle) SSLv3.

    Setting ssl_protocols to exclude SSLv2 in nginx.conf like so

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
    

    fixed the problem for me.

    I consider it unfortunate that chrome doesn't make this reason more transparent. "this page loads some resources insecurely" is very misleading if not wrong.

提交回复
热议问题