Hello @recet, I'm not totally sure, but does it work by defining 2 ingress rules?
The goal is to separate concern: you define the most specific ingress rul to be your (host(REDACTED) + pathprefix(/HERE/SOMEWHERE/ONLY)),
which is under rate limiting control,
and then define a second ingress rule for the rest the host REDACTED.
This should work because the priority of matching rules in Traefik v1.7 are based on the lenght of the rule. so (host + path) has more priority than (host), making the expected behavior. Reference: https://docs.traefik.io/v1.7/basics/#priorities.