码迷,mamicode.com
首页 > 其他好文 > 详细

nginx location proxy pass

时间:2018-09-22 23:13:29      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:conf   col   定向   var   tps   lan   www.   proxy   pass   

 

nginx:
192.168.1.23作为nginx反向代理机器
目标机器192.168.1.5上部署一个8090端口的nginx

[root@localhost conf.d]# cat test.conf
server {
listen 80;
server_name localhost;
location / {
root /var/www/html;
index index.html;
}
 
location  /proxy/ {
          proxy_pass http://192.168.1.5:8090/;
}
}

访问http://192.168.1.23/proxy/就会被代理到http://192.168.1.5:8090/, 浏览器的url是http://192.168.1.23/proxy/不变,
目标机器上无需存在proxy目录(curl http://192.168.1.23/proxy 可以发现是302,301重定向)


如果:proxy_pass配置的url后面不加"/"
[root@localhost conf.d]# cat test.conf
server {
listen 80;
server_name localhost;
location / {
root /var/www/html;
index index.html;
}
 
location  /proxy/ {
          proxy_pass http://192.168.1.5:8090;
}
}

那么访问http://192.168.1.23/proxy或http://192.168.1.23/proxy/,都会失败!
这样配置后,访问http://192.168.1.23/proxy/就会被反向代理到http://192.168.1.5:8090/proxy/,目标机必须有proxy目录 

快速记忆:proxypass最后如果带 / ,则代理到目标机就没有location后面的目录,  不带 /  , 到目标机后携带location后面的目录,一起带过去了

 

nginx location proxy pass

标签:conf   col   定向   var   tps   lan   www.   proxy   pass   

原文地址:https://www.cnblogs.com/yum777/p/9691433.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!