I have this rule: ``` { "id": "ui:se...
# talk-oathkeeper
w
I have this rule:
Copy code
{
        "id": "ui:selfservice",
        "upstream": {
          "preserve_host": true,
          "url": "<http://selfservice-ui-kratos-selfservice-ui-node.default.svc.cluster.local>",
        },
        "match": {
          "url": "<http://engine.showcase.app.test/><.*>",
          "methods": [
            "GET",
            "POST",
            "PUT",
            "PATCH",
            "DELETE"
          ]
        },
        "authenticators": [
          {
            "handler": "noop"
          }
        ],
        "mutators": [
          {
            "handler": "noop"
          }
        ],
        "authorizer": {
          "handler": "allow"
        },
        "errors": [
          {
            "handler": "noop"
          }
        ]
      }
When I visit *http://engine.showcase.app.test/login* I get a 404. Specifically, the log says:
Copy code
Requested url does not match any rule
Any idea why?
n
is your matching strategy set to regexp?
w
Yep, regexp fixed it! Thanks