Nginx 代理转发阿里云OSS上传的实现代码
前言
因为小程序上传需要https,服务器https用的是letsencrypt生成的证书,但是阿里云oss没有做https(懒得上传证书),就想着用Nginx代理转发上传请求。
Nginx配置
#HTTPSserver # server{ listen443ssl; server_nameyour.domain.name; ... location/{ proxy_passhttp://127.0.0.1:3000; proxy_set_headerHost$Host; proxy_set_headerX-Real-IP$remote_addr; proxy_set_headerX-Forwarded-For } location/oss{ proxy_set_headerHostdrift-book-dev.oss-cn-shenzhen.aliyuncs.com; proxy_set_headerConnectionkeep-alive; proxy_passhttp://***.oss-cn-***.aliyuncs.com/; #proxy_set_headerX-Real-IP$remote_addr; #proxy_set_headerX-Forwarded-For$proxy_add_x_forwarded_for; } }
这里使用子path"/oss"做转发路径。
proxy_pass指定你的阿里云域名,记得后面一定要带斜杠"/",不然转发会失败;
nginx配置proxy_pass代理转发
假设下面四种情况分别用http://192.168.1.1/proxy/test.html进行访问。
第一种:
location/proxy/{ proxy_passhttp://127.0.0.1/; }
代理到URL:http://127.0.0.1/test.html
第二种(相对于第一种,最后少一个/)
location/proxy/{ proxy_passhttp://127.0.0.1; }
代理到URL:http://127.0.0.1/proxy/test.html
第三种:
location/proxy/{ proxy_passhttp://127.0.0.1/aaa/; }
代理到URL:http://127.0.0.1/aaa/test.html
第四种(相对于第三种,最后少一个/)
location/proxy/{ proxy_passhttp://127.0.0.1/aaa; }
代理到URL:http://127.0.0.1/aaatest.html
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持毛票票。