概述
阅读文本大概需要3分钟。
随着应用服务的增多,服务可能部署在不同的服务器上。这些服务有可能存在IP、端口Port、请求的ContextPath等一样的情况,怎么合理的配置他们的跳转呢?下面介绍三种常见的跳转方式。
0x01:根据不同域名判断跳转不同服务
就是根据在nginx.conf配置的server_name与域名或者(或者IP)匹配跳转不同的服务。
#当客户端访问www.domain.com,监听端口号为80,直接跳转到data/www目录下文件
server {
listen 80;
server_name www.domain.com;
location / {
root data/www;
index index.html index.htm;
}
}
#当客户端访问bbs.domain.com,监听端口号为80,直接跳转到data/bbs目录下文件
server {
listen 80;
server_name bbs.domain.com;
location / {
root data/bbs;
index index.html index.htm;
}
}
0x02:根据不同端口判断跳转不同服务
就是根据在nginx.conf配置的listen指令匹配跳转不同的服务。
#当客户端访问www.domain.com,监听端口号为8081,直接跳转到data/www目录下文件
server {
listen 8081;
server_name www.domain.com;
location / {
root data/www;
index index.html index.htm;
}
}
#当客户端访问www.domain.com,监听端口号为8082,直接跳转到data/bbs目录下文件
server {
listen 8082;
server_name www.domain.com;
location / {
root data/bbs;
index index.html index.htm;
}
}
0x03:根据链接的ContextPath不同跳转不同的服务器
主要根据每个应用服务器的ContextPath的普通,匹配跳转到不同的服务器。
#服务创建监听的端口号
server {
#监听的端口号
listen 80;
#服务名称
server_name www.domain.com;
# 匹配项目名称为bbs开头
location /bbs/ {
# 配置反向代理
proxy_pass http://192.168.1.188:8081/;
index index.html index.htm;
}
# 匹配项目名称为blog开头
location /blog/ {
# 配置反向代理
proxy_pass http://192.168.1.188:8082/;
index index.html index.htm;
}
}
☆
往期精彩
☆
01 Sentinel如何进行流量监控
02 Nacos源码编译
03 基于Apache Curator框架的ZooKeeper使用详解
04 spring boot项目整合xxl-job
05 互联网支付系统整体架构详解
关注我
每天进步一点点
喜欢!在看☟
最后
以上就是善良皮带为你收集整理的Nginx系列:配置跳转的常用方式的全部内容,希望文章能够帮你解决Nginx系列:配置跳转的常用方式所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复