共计 2087 个字符,预计需要花费 6 分钟才能阅读完成。
Nginx 通过客户端的 APP 版本号来判定跳转后台对应的版本号的服务器,配置如下:
upstream appserver{
server 10.9.14.1:799 weight=5;
}
server {
listen 80;
server_name uatv2.yaok.com;
charset utf-8;
access_log logs/uat.yaok.com.log logstash_json;
location ^~ /appapi/ {
set $newIp “10.7.4.49:8180”;
if ($http_appVersion = “1.4.0”){
set $newIp “10.9.54.128:799”;
}
# 以上代码意思是,如果客户端版本是 1.4.0,则跳转至 10.9.54.128:799,否则跳转至 10.7.4.49:8180 这台服务器
proxy_pass “http://$newIp”;
proxy_redirect off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location ^~ /pay/ {
proxy_pass http://appserver/pay/;
proxy_redirect off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location ^~ /uploadapi/ {
proxy_pass http://appserver/uploadapi/;
proxy_redirect off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location / {
rewrite ^/(.*)$ //$1 last;
}
# 这段要放在未尾才能跳转成功
}
检查结果:
版本为 1.4.0 的返回的状态码为 200,1.4.0 有这个接口
版本不是为 1.4.0 的返回 404 状态码。
因为两个版本的接口不一样,所以返回的状态码不一样
Nginx 403 forbidden 的解决办法 http://www.linuxidc.com/Linux/2017-08/146084.htm
CentOS 7 下 Nginx 服务器的安装配置 http://www.linuxidc.com/Linux/2017-04/142986.htm
CentOS 上安装 Nginx 服务器实现虚拟主机和域名重定向 http://www.linuxidc.com/Linux/2017-04/142642.htm
CentOS 6.8 安装 LNMP 环境(Linux+Nginx+MySQL+PHP)http://www.linuxidc.com/Linux/2017-04/142880.htm
Linux 下安装 PHP 环境并配置 Nginx 支持 php-fpm 模块 http://www.linuxidc.com/Linux/2017-05/144333.htm
Nginx 服务的 SSL 认证和 htpasswd 认证 http://www.linuxidc.com/Linux/2017-04/142478.htm
Ubuntu 16.04 上启用加密安全的 Nginx Web 服务器 http://www.linuxidc.com/Linux/2017-07/145522.htm
Linux 中安装配置 Nginx 及参数详解 http://www.linuxidc.com/Linux/2017-05/143853.htm
Nginx 日志过滤 使用 ngx_log_if 不记录特定日志 http://www.linuxidc.com/Linux/2014-07/104686.htm
CentOS 7.2 下 Nginx+PHP+MySQL+Memcache 缓存服务器安装配置 http://www.linuxidc.com/Linux/2017-03/142168.htm
CentOS6.9 编译安装 Nginx1.4.7 http://www.linuxidc.com/Linux/2017-06/144473.htm
Nginx 的详细介绍 :请点这里
Nginx 的下载地址 :请点这里
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2017-08/146435.htm