当前位置:   article > 正文

https下如何能够访问http的资源,通过服务器的nginx代理转发

https下如何能够访问http的资源,通过服务器的nginx代理转发

目标场景

  • https://www.example.com/index.php的访问
  • index.php有图片资源
#用相对路径
<img src="/zwimg/upload/33.png" /> 
#用绝对路径
<img src="https://www.example.com/zwimg/upload/33.png" /> 
  • 1
  • 2
  • 3
  • 4
  • 图片资源实际的访问地址是http://img.example.com/upload/33.png
  • 通过设置nginx的代理方式将https://www.example.com/zwimg/upload/33.png代理为http://img.example.com/upload/33.png就能够骗过浏览器访问到http的图片资源

nginx的完整部分

#nginx设置的方式完整部分
server{ #此处是将http://www.example.com重定向到https://www.example.com访问
    listen 80;
    server_name www.example.com;
    return 301 https://www.example.com$request_uri;
}
server { 
        listen       443 ssl;  #设置https
        server_name  www.example.com;

        #charset koi8-r;
        #配置https的证书(专栏的https协议相关脚本进行生成操作)
		ssl_certificate /etc/letsencrypt/live/www.example.com/fullchain.pem;
        ssl_certificate_key /etc/letsencryp
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/1015933
推荐阅读
相关标签
  

闽ICP备14008679号