Nginx
随着应用服务的增多,服务可能部署在不同的服务器上。这些服务有可能存在IP、端口Port、请求的ContextPath等一样的情况,怎么合理的配置他们的跳转呢?下面介绍三种常见的跳转方式。

1、根据不同域名判断跳转不同服务

就是根据在nginx.conf配置的server_name与域名或者(或者IP)匹配跳转不同的服务。

  1. #当客户端访问www.domain.com,监听端口号为80,直接跳转到data/www目录下文件
  2. server {
  3. listen 80;
  4. server_name www.domain.com;
  5. location / {
  6. root data/www;
  7. index index.html index.htm;
  8. }
  9. }
  10. #当客户端访问bbs.domain.com,监听端口号为80,直接跳转到data/bbs目录下文件
  11. server {
  12. listen 80;
  13. server_name bbs.domain.com;
  14. location / {
  15. root data/bbs;
  16. index index.html index.htm;
  17. }
  18. }

2、根据不同端口判断跳转不同服务

就是根据在nginx.conf配置的listen指令匹配跳转不同的服务。

  1. #当客户端访问www.domain.com,监听端口号为8081,直接跳转到data/www目录下文件
  2. server {
  3. listen 8081;
  4. server_name www.domain.com;
  5. location / {
  6. root data/www;
  7. index index.html index.htm;
  8. }
  9. }
  10. #当客户端访问www.domain.com,监听端口号为8082,直接跳转到data/bbs目录下文件
  11. server {
  12. listen 8082;
  13. server_name www.domain.com;
  14. location / {
  15. root data/bbs;
  16. index index.html index.htm;
  17. }
  18. }

3、根据链接的ContextPath不同跳转不同的服务器

主要根据每个应用服务器的ContextPath的普通,匹配跳转到不同的服务器。

  1. #服务创建监听的端口号
  2. server {
  3. #监听的端口号
  4. listen 80;
  5. #服务名称
  6. server_name www.domain.com;
  7. # 匹配项目名称为bbs开头
  8. location /bbs/ {
  9. # 配置反向代理
  10. proxy_pass http://192.168.1.188:8081/;
  11. index index.html index.htm;
  12. }
  13. # 匹配项目名称为blog开头
  14. location /blog/ {
  15. # 配置反向代理
  16. proxy_pass http://192.168.1.188:8082/;
  17. index index.html index.htm;
  18. }
  19. }