Hello. I’m having a little trouble with regex matc...
# talk-oathkeeper
c
Hello. I’m having a little trouble with regex matching. My goal is to match for every URL except for 2 URIs (
view/all/newJob
and
some/other/uri
). My most recent regex looks like this
<https://my.domain.com/><(?!(view/all/newJob|some/other/uri)).*>
but it still won’t match URLs like
<https://my.domain.com/>
. Any idea where the error might be? EDIT: fixed it myself. As usual, it was a layer 8 problem. Forgot to switch the matching strategy from glob to regexp in
oathkeeper.yml