当前位置:   article > 正文

tomcat动静分离负载均衡

tomcat动静分离负载均衡

需要三台nginx服务主机,2台tomcat主机

  1. #nginx1
  2. systemctl stop firewalld
  3. setenforce 0
  4. #关闭防火墙
  5. vim /usr/local/nginx/conf/nginx.conf
  6. #在http模块中添加
  7. upstream tomcat {
  8. server 192.168.233.66:8080 weight=1;
  9. server 192.168.233.67:8080 weight=1;
  10. }
  11. #在location / {
  12. root html;
  13. index index.html index.htm;
  14. }
  15. 添加
  16. location ~* \.jsp$ {
  17. proxy_pass http://tomcat;
  18. proxy_set_header HOST $host;
  19. proxy_set_header X-Real-IP $remote_addr;
  20. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  21. }
  22. nginx -t
  23. #检测一下
  24. vim /usr/local/nginx/html/index.html
  25. 100dd
  26. 输入需要的字符
  27. wq保存退出
  28. #将图片放入html目录下
  29. systemctl restart nginx
  30. #重启nginx

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/217104
推荐阅读
相关标签
  

闽ICP备14008679号