• 欢迎访问显哥博客,本网站纯属学习技术,绝无商业用途,欢迎小伙伴们共同学习!研究技术!QQ:52249909 加我QQ
  • 世界75亿人,这么小的概率,能认识你,是我一生的幸运,不妨加个QQ接触一下:52249909 加我QQ

【Linux运维架构】LNMP企业架构之nginx资源分离实战

Linux架构 lixian 5年前 (2020-03-08) 1091次浏览 0个评论 扫描二维码
文章目录[隐藏]

一、Nginx资源分离概述

Nginx通过负载均衡实现手机与PC调度至不通的后端节点应用案例
使用pc访问时跳转到pc配置的页面,使用手机访问时可以跳转不同的页面
【Linux运维架构】LNMP企业架构之nginx资源分离实战

二、资源分离环境准备

主机 主机作用 外网ip 内网ip 端口
Lb01 负载均衡 10.0.0.4 172.16.1.4 80
web01 基于多端口多虚拟主机 10.0.0.7 172.16.1.7 8081-8083

三、编写nginx的conf文件

  1. [root@web01 conf.d]# vim sj.linux.com.conf
  2. server {
  3. listen 8081;
  4. server_name sj.linux.com;
  5.  
  6. location / {
  7. root /code/android;
  8. index index.html;
  9. }
  10. }
  11.  
  12. server {
  13. listen 8082;
  14. server_name sj.linux.com;
  15.  
  16. location / {
  17. root /code/iphone;
  18. index index.html;
  19. }
  20. }
  21.  
  22. server {
  23. listen 8083;
  24. server_name sj.linux.com;
  25.  
  26. location / {
  27. root /code/pc;
  28. index index.html;
  29. }
  30. }

重启nginx服务

  1. [root@lb01 conf.d]# systemctl restart nginx

四、配置站点

  1. [root@web01 conf.d]# mkdir /code/{android,pc,iphone}
  2. [root@web01 conf.d]# echo "我是安卓" > /code/android/index.html
  3. [root@web01 conf.d]# echo "我是iphone" > /code/iphone/index.html
  4. [root@web01 conf.d]# echo "我是computer" > /code/pc/index.html

五、配置负载均衡

  1. [root@lb01 conf.d]# vim sj.linux.com.conf
  2. upstream anzhuo {
  3. server 172.16.1.7:8081;
  4. }
  5. upstream iphone {
  6. server 172.16.1.7:8082;
  7. }
  8. upstream pc {
  9. server 172.16.1.7:8083;
  10. }
  11. server {
  12. listen 80;
  13. server_name sj.linux.com;
  14. charset 'utf-8';
  15. location / {
  16. if ($http_user_agent ~* "Android") {
  17. proxy_pass http://anzhuo;
  18. }
  19.  
  20. if ($http_user_agent ~* "iPhone") {
  21. proxy_pass http://iphone;
  22. }
  23.  
  24. if ($http_user_agent ~* "Chrome") {
  25. return 403;
  26. }
  27. proxy_pass http://pc;
  28. }
  29. }
  30.  

六、配置hosts浏览器访问页面测试

【Linux运维架构】LNMP企业架构之nginx资源分离实战

【Linux运维架构】LNMP企业架构之nginx资源分离实战

【Linux运维架构】LNMP企业架构之nginx资源分离实战


本站博主 , 版权所有丨如未注明 , 均为原创
转载请注明原文链接:【Linux运维架构】LNMP企业架构之nginx资源分离实战
喜欢 (0)

您必须 登录 才能发表评论!