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

nginx填坑补充(nginx根据上下文跳转ip或者域名)

时间:2018-04-12 22:31:39      阅读:1021      评论:0      收藏:0      [点我收藏+]

标签:.net   跳转   dex   header   需求   head   地址   html   http   

今天有一个需求,要根据上下文调到不同的ip或域名地址,使用上下文做域名跳转的时候,proxy_pass域名后面一定要带‘/’否则会把nginx的上下文自动带入,这样就行。

location ^~ /docs/ {
root html;
add_header Cache-Control no-store;
add_header ‘Access-Control-Allow-Origin‘ ‘*‘;
index index.html index.htm;
proxy_pass http://47.92.128.109:8080/;
}

location / {
root html;
add_header Cache-Control no-store;
add_header ‘Access-Control-Allow-Origin‘ ‘*‘;
index index.html index.htm;
proxy_pass http://cg.haier.net;
}

nginx填坑补充(nginx根据上下文跳转ip或者域名)

标签:.net   跳转   dex   header   需求   head   地址   html   http   

原文地址:https://www.cnblogs.com/dayangcong/p/8810282.html

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