我是靠谱客的博主 大气宝贝,最近开发中收集的这篇文章主要介绍haproxy 规则匹配到了就停止,不会继续匹配下一个,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

      acl             url_web_wwm             path_beg                -i                      /scan
      use_backend    	zjtest7_com          if                                     url_web_wwm


        acl             url_static              path_end                .html .gif .png .jpg .css .js
        use_backend     api_zjtest7_com          if                      url_static

        
       backend zjtest7_com
       mode    	http
       server  	apphost_1		192.168.32.101:3000  	check inter 2000 fall 3
       
       backend api_zjtest7_com
       mode     http
       server   apphost_1               192.168.32.76:80     check inter 2000 fall 3

              backend image_zjtest7_com
       mode     http
       server   apphost_1               192.168.32.61:80     check inter 2000 fall 3

其中 zjtest7.com 和api.zjtest7.com 都指向到haproxy


zjtest7-haproxy:/root# curl zjtest7.com/scan  此时发送到 zjtest7_com 而不会发送到 api_zjtest7_com 


zjtest7-haproxy:/root# curl api.zjtest7.com/scan/index.html


zjtest7-haproxy:/root# curl zjtest7.com/scan/test
welcome wxpod999zjtest7-haproxy:/root# 



/case 1*********************************

      acl             url_static              path_end                .html .gif .png .jpg .css .js
        use_backend     api_zjtest7_com          if                      url_static
      
      acl             url_web_wwm             path_beg                -i                      /scan
      use_backend    	zjtest7_com          if                                     url_web_wwm

zjtest7-haproxy:/root# curl api.zjtest7.com/scan/index.html
nginx01-192.168.32.76 20161218

此时可以访问 因为先匹配到了 path_end ,没有继续往下匹配 不然 就会匹配scan 而无法访问


/case 2***********************************


      acl             url_web_wwm             path_beg                -i                      /scan
      use_backend    	zjtest7_com          if                                     url_web_wwm
            acl             url_static              path_end                .html .gif .png .jpg .css .js
        use_backend     api_zjtest7_com          if                      url_static


zjtest7-haproxy:/root# curl api.zjtest7.com/scan/index.html

此时先匹配到了 /scan 没有继续往下 匹配  去访问zjtest7_com了 所以访问不到

转载于:https://www.cnblogs.com/zhaoyangjian724/p/6198922.html

最后

以上就是大气宝贝为你收集整理的haproxy 规则匹配到了就停止,不会继续匹配下一个的全部内容,希望文章能够帮你解决haproxy 规则匹配到了就停止,不会继续匹配下一个所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部