nginx填坑补充(nginx根据上下文跳转ip或者域名)
Posted 一个大洋葱
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx填坑补充(nginx根据上下文跳转ip或者域名)相关的知识,希望对你有一定的参考价值。
今天有一个需求,要根据上下文调到不同的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或者域名)的主要内容,如果未能解决你的问题,请参考以下文章