Match haproxy path using path_reg
Asked Answered
U

2

5

I'm trying to match urls like: /rivers/1, /rivers/2adsfs, /rivers/sdfd2d with:

  acl rivers_show   path_reg ^/rivers/\w+/?

But that does seem to work. Anyone know why?

Unicameral answered 3/9, 2012 at 23:14 Comment(0)
P
8

HAproxy's regex does not include \w as a character class. Keep in mind regex is one of the worst performing ACL matches. You may want to look into use something like this instead, although its its not exactly the same.

acl path_beg /rivers/

Pepperandsalt answered 7/10, 2012 at 10:45 Comment(0)
P
0

You can use the below the regex to match the give

acl rivers_show   path_reg -i ^\/rivers\/[^\.]*
Prestige answered 1/8, 2016 at 0:15 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.