We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 447c45f commit c075e3bCopy full SHA for c075e3b
default.vcl
@@ -51,6 +51,9 @@ sub vcl_recv {
51
set req.url = regsub(req.url, "locations-smartlogic", "notify");
52
set req.backend_hint = dynBackend.backend("locations-smartlogic-notifier");
53
}
54
+ elif (req.url ~ "^\/concept/.*$") {
55
+ set req.backend_hint = dynBackend.backend("cm-generic-concept-transformer");
56
+ }
57
elif (req.url ~ "^\/__[\w-]*\/.*$") {
58
# create a new backend dynamically to match the requested URL that will be looked up in the Kubernetes DNS.
59
# For example calling the URL /__content-ingester/xyz will forward the request to the service content-ingester with the url /xyz
0 commit comments