nginx报错Mixed Content: The page at 'https://www.example.com' was loaded over HTTPS, but requested an insecure image ‘http://static.example.com/test.jpg’. This content should also be served over HTTPS. 如何解决
时间: 2023-02-08 15:46:03 浏览: 222
nginx作为http图片服务器示例
该错误表明页面使用的是 HTTPS 协议加载的,但是它请求的图像(http://static.example.com/test.jpg)是使用不安全的 HTTP 协议加载的。为了保证安全,这个图像也应该使用 HTTPS 协议加载。
解决方案是将图像的 URL 更改为使用 HTTPS 协议加载,例如 https://static.example.com/test.jpg。这样,浏览器就不会显示“混合内容”错误了。
阅读全文