proxy_pass http://localhost:8090; } } 在我们服务器的响应头中加入:header("Content-Security-Policy: upgrade-insecure-requests");页面是 https 的,而这个页面中包含了大量的 http 资源(图片、iframe等),页面一旦发现存在上述响应头,会在加载 http 资源时自动替换成 https 请求。
[Nginx]配置Https后⽆法访问http资源 增加这个配置后,忽略http请求,然后在nginx -s reload add_header Content-Security-Policy upgrade-insecure-requests;server { listen 443;server_name localhost;ssl on;root html;index index.html index.htm;ssl_certificate /etc/ssl/certs/2906065_zxacn.com.pem;ssl...