前言
因为小程序上传需要https,服务器https用的是letsencrypt生成的证书,但是阿里云oss没有做https(懒得上传证书),就想着用Nginx代理转发上传请求 。
Nginx配置
# HTTPS server# server {listen443 ssl;server_name your.domain.name;...location / {proxy_pass http://127.0.0.1:3000;proxy_set_header Host $Host;proxy_set_header X-Real-IP $remote_addr;proxy_set_header X-Forwarded-For}location /oss {proxy_set_header Host drift-book-dev.oss-cn-shenzhen.aliyuncs.com;proxy_set_header Connection keep-alive;proxy_pass http://***.oss-cn-***.aliyuncs.com/;#proxy_set_header X-Real-IP $remote_addr;#proxy_set_header X-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_pass http://127.0.0.1/; } 代理到URL:http://127.0.0.1/test.html
第二种(相对于第一种,最后少一个 / )
location /proxy/ {proxy_pass http://127.0.0.1; } 代理到URL:http://127.0.0.1/proxy/test.html
第三种:
location /proxy/ {proxy_pass http://127.0.0.1/aaa/; } 代理到URL:http://127.0.0.1/aaa/test.html
第四种(相对于第三种,最后少一个 / )
location /proxy/ {proxy_pass http://127.0.0.1/aaa; } 代理到URL:http://127.0.0.1/aaatest.html
【Nginx 代理转发阿里云OSS上传的实现代码,阿里云OSS上传代理转发案例教程】以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 。
Nginx 代理转发阿里云OSS上传的实现代码,阿里云OSS上传代理转发案例教程
推荐阅读
- centos8安装nginx1.9.1的详细过程,nginx1.9.1安装教程介绍
- nginx反向代理配置去除前缀案例教程,nginx反向代理配置教程
- 2018做聚合支付代理加盟有前景吗 中国银联聚合支付代理加盟
- Nginx源码研究之nginx限流模块详解说明
- 在centos7中安装nginx的详细教程方法
- linux系统shell脚本定时统计Nginx下access.log的PV并发送给API保存到数据库
- nginx下配置openssl实现https的方法
- 浅谈nginx反向代理中神奇的斜线
- 开一家智能家居店需要多少钱,智能家居代理的费用大概是多少?
- Nginx配置Https安全认证的解决方法