traefik/docs/content/middlewares/addprefix.md
2019-03-29 12:34:05 +01:00

765 B

Add Prefix

Prefixing the Path {: .subtitle }

AddPrefix

The AddPrefix middleware updates the URL Path of the request before forwarding it.

Configuration Examples

# Prefixing with /foo
labels:
- "traefik.http.middlewares.add-bar.addprefix.prefix=/foo"
apiVersion: traefik.containo.us/v1alpha1
kind: Middleware
metadata:
  name: addprefix
spec:
  addprefix:
    prefix: /bar
# Prefixing with /foo
[http.middlewares]
  [http.middlewares.add-foo.AddPrefix]
     prefix = "/foo"

Configuration Options

prefix

prefix is the string to add before the current path in the requested URL. It should include the leading slash (/).