From 607faace0769aebacee21d7ac6301e9d1ac46612 Mon Sep 17 00:00:00 2001 From: Robert Barbey Date: Mon, 30 May 2022 14:10:08 +0200 Subject: [PATCH] Fix typo in stripPrefix middleware docs --- docs/content/middlewares/http/stripprefix.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/middlewares/http/stripprefix.md b/docs/content/middlewares/http/stripprefix.md index 23288008b..ab4333486 100644 --- a/docs/content/middlewares/http/stripprefix.md +++ b/docs/content/middlewares/http/stripprefix.md @@ -87,7 +87,7 @@ The `prefixes` option defines the prefixes to strip from the request URL. For instance, `/products` also matches `/products/shoes` and `/products/shirts`. If your backend is serving assets (e.g., images or JavaScript files), it can use the `X-Forwarded-Prefix` header to properly construct relative URLs. -Using the previous example, the backend should return `/products/shoes/image.png` (and not `/images.png`, which Traefik would likely not be able to associate with the same backend). +Using the previous example, the backend should return `/products/shoes/image.png` (and not `/image.png`, which Traefik would likely not be able to associate with the same backend). ### `forceSlash`