traefik/docs/content/middlewares/redirectscheme.md
2019-04-08 17:14:08 +02:00

1 KiB

RedirectScheme

Redirecting the Client to a Different Scheme/Port {: .subtitle }

TODO: add schema

RegexRedirect redirect request from a scheme to another.

Configuration Examples

# Redirect to https
labels:
- "traefik.http.middlewares.test-redirectscheme.redirectscheme.scheme=https"
# Redirect to https
apiVersion: traefik.containo.us/v1alpha1
kind: Middleware
metadata:
  name: test-redirectscheme
spec:
  redirectScheme:
    scheme: https
# Redirect to https
labels:
- "traefik.http.middlewares.test-redirectscheme.redirectscheme.scheme=https"
# Redirect to https
[http.middlewares]
  [http.middlewares.test-redirectscheme.redirectscheme]
    scheme = "https"

Configuration Options

permanent

Set the permanent option to true to apply a permanent redirection.

scheme

The scheme option defines the scheme of the new url.

port

The port option defines the port of the new url.