2019-02-26 05:50:07 -08:00
|
|
|
site_name: Traefik
|
|
|
|
site_description: Traefik Documentation
|
2020-09-23 10:20:04 +02:00
|
|
|
site_author: traefik.io
|
|
|
|
site_url: https://doc.traefik.io/traefik
|
2019-02-26 05:50:07 -08:00
|
|
|
dev_addr: 0.0.0.0:8000
|
|
|
|
|
|
|
|
repo_name: 'GitHub'
|
2020-09-16 15:46:04 +02:00
|
|
|
repo_url: 'https://github.com/traefik/traefik'
|
2019-02-26 05:50:07 -08:00
|
|
|
|
|
|
|
docs_dir: 'content'
|
|
|
|
|
2021-01-13 11:54:04 +01:00
|
|
|
product: proxy
|
|
|
|
|
2019-03-18 10:50:05 +01:00
|
|
|
# https://squidfunk.github.io/mkdocs-material/
|
2019-02-26 05:50:07 -08:00
|
|
|
theme:
|
2021-01-13 11:54:04 +01:00
|
|
|
name: 'traefik-labs'
|
2019-02-26 05:50:07 -08:00
|
|
|
language: en
|
|
|
|
include_sidebar: true
|
2020-09-23 10:20:04 +02:00
|
|
|
favicon: assets/img/traefikproxy-icon-color.png
|
|
|
|
logo: assets/img/traefikproxy-vertical-logo-color.svg
|
2019-02-26 05:50:07 -08:00
|
|
|
feature:
|
|
|
|
tabs: false
|
|
|
|
palette:
|
|
|
|
primary: 'cyan'
|
|
|
|
accent: 'cyan'
|
|
|
|
i18n:
|
|
|
|
prev: 'Previous'
|
|
|
|
next: 'Next'
|
|
|
|
|
2025-01-02 12:08:04 +01:00
|
|
|
copyright: 'Traefik Labs • Copyright © 2016-2025'
|
2019-02-26 05:50:07 -08:00
|
|
|
|
|
|
|
extra_javascript:
|
|
|
|
- assets/js/hljs/highlight.pack.js # Download from https://highlightjs.org/download/ and enable YAML, TOML and Dockerfile
|
|
|
|
- assets/js/extra.js
|
|
|
|
|
|
|
|
plugins:
|
|
|
|
- search
|
2019-11-12 15:40:05 +01:00
|
|
|
- exclude:
|
|
|
|
glob:
|
2019-12-09 18:08:04 +01:00
|
|
|
- "**/include-*.md"
|
2019-02-26 05:50:07 -08:00
|
|
|
|
2019-03-18 10:50:05 +01:00
|
|
|
# https://squidfunk.github.io/mkdocs-material/extensions/admonition/
|
|
|
|
# https://facelessuser.github.io/pymdown-extensions/
|
2019-02-26 05:50:07 -08:00
|
|
|
markdown_extensions:
|
2022-04-15 15:44:08 +02:00
|
|
|
- meta
|
2019-02-26 05:50:07 -08:00
|
|
|
- attr_list
|
|
|
|
- admonition
|
|
|
|
- footnotes
|
|
|
|
- pymdownx.details
|
|
|
|
- pymdownx.inlinehilite
|
|
|
|
- pymdownx.highlight:
|
2019-03-18 10:50:05 +01:00
|
|
|
use_pygments: false # hljs is used instead of pygment for TOML highlighting support
|
2019-02-26 05:50:07 -08:00
|
|
|
- pymdownx.smartsymbols
|
|
|
|
- pymdownx.superfences
|
2024-12-06 10:14:07 +01:00
|
|
|
- pymdownx.tabbed
|
2019-02-26 05:50:07 -08:00
|
|
|
- pymdownx.tasklist
|
2019-03-18 10:50:05 +01:00
|
|
|
- pymdownx.snippets:
|
|
|
|
check_paths: true
|
2022-09-09 09:17:53 -06:00
|
|
|
- markdown_include.include:
|
|
|
|
base_path: content/includes/
|
|
|
|
encoding: utf-8
|
2019-02-26 05:50:07 -08:00
|
|
|
- toc:
|
|
|
|
permalink: true
|
|
|
|
|
|
|
|
# Page tree
|
|
|
|
nav:
|
2025-04-10 13:56:04 +01:00
|
|
|
- 'What is Traefik': 'index.md'
|
2019-02-26 05:50:07 -08:00
|
|
|
- 'Getting Started':
|
|
|
|
- 'Concepts' : 'getting-started/concepts.md'
|
2022-08-09 16:06:09 +02:00
|
|
|
- 'Quick Start':
|
|
|
|
- 'Docker': 'getting-started/quick-start.md'
|
|
|
|
- 'Kubernetes': 'getting-started/quick-start-with-kubernetes.md'
|
2019-03-22 09:22:09 -05:00
|
|
|
- 'Configuration Introduction': 'getting-started/configuration-overview.md'
|
2019-07-19 09:24:04 +02:00
|
|
|
- 'Install Traefik': 'getting-started/install-traefik.md'
|
2021-06-11 10:00:14 +02:00
|
|
|
- 'Frequently Asked Questions': 'getting-started/faq.md'
|
2019-02-26 05:50:07 -08:00
|
|
|
- 'Configuration Discovery':
|
|
|
|
- 'Overview': 'providers/overview.md'
|
|
|
|
- 'Docker': 'providers/docker.md'
|
2023-05-10 15:28:05 +02:00
|
|
|
- 'Swarm': 'providers/swarm.md'
|
2019-03-19 16:44:06 +01:00
|
|
|
- 'Kubernetes IngressRoute': 'providers/kubernetes-crd.md'
|
2019-07-19 09:50:04 +02:00
|
|
|
- 'Kubernetes Ingress': 'providers/kubernetes-ingress.md'
|
2020-12-15 16:40:05 +01:00
|
|
|
- 'Kubernetes Gateway API': 'providers/kubernetes-gateway.md'
|
2019-10-15 18:34:08 +03:00
|
|
|
- 'Consul Catalog': 'providers/consul-catalog.md'
|
2022-06-10 11:32:08 -05:00
|
|
|
- 'Nomad': 'providers/nomad.md'
|
2020-07-15 16:28:04 +02:00
|
|
|
- 'ECS': 'providers/ecs.md'
|
2019-04-05 12:22:04 +02:00
|
|
|
- 'File': 'providers/file.md'
|
2019-11-28 21:56:04 +01:00
|
|
|
- 'Consul': 'providers/consul.md'
|
|
|
|
- 'Etcd': 'providers/etcd.md'
|
|
|
|
- 'ZooKeeper': 'providers/zookeeper.md'
|
|
|
|
- 'Redis': 'providers/redis.md'
|
2020-07-15 16:56:03 +02:00
|
|
|
- 'HTTP': 'providers/http.md'
|
2019-02-26 05:50:07 -08:00
|
|
|
- 'Routing & Load Balancing':
|
|
|
|
- 'Overview': 'routing/overview.md'
|
2019-09-23 14:32:04 +02:00
|
|
|
- 'EntryPoints': 'routing/entrypoints.md'
|
2019-03-14 09:30:04 +01:00
|
|
|
- 'Routers': 'routing/routers/index.md'
|
|
|
|
- 'Services': 'routing/services/index.md'
|
2019-09-23 14:32:04 +02:00
|
|
|
- 'Providers':
|
|
|
|
- 'Docker': 'routing/providers/docker.md'
|
2023-05-10 15:28:05 +02:00
|
|
|
- 'Swarm': 'routing/providers/swarm.md'
|
2019-09-23 17:00:06 +02:00
|
|
|
- 'Kubernetes IngressRoute': 'routing/providers/kubernetes-crd.md'
|
2020-01-14 15:48:06 +01:00
|
|
|
- 'Kubernetes Ingress': 'routing/providers/kubernetes-ingress.md'
|
2020-12-15 16:40:05 +01:00
|
|
|
- 'Kubernetes Gateway API': 'routing/providers/kubernetes-gateway.md'
|
2019-10-15 18:34:08 +03:00
|
|
|
- 'Consul Catalog': 'routing/providers/consul-catalog.md'
|
2022-06-10 11:32:08 -05:00
|
|
|
- 'Nomad': 'routing/providers/nomad.md'
|
2020-07-15 16:28:04 +02:00
|
|
|
- 'ECS': 'routing/providers/ecs.md'
|
2019-11-28 21:56:04 +01:00
|
|
|
- 'KV': 'routing/providers/kv.md'
|
2019-03-14 09:30:04 +01:00
|
|
|
- 'HTTPS & TLS':
|
2019-06-19 19:00:06 +02:00
|
|
|
- 'Overview': 'https/overview.md'
|
|
|
|
- 'TLS': 'https/tls.md'
|
|
|
|
- 'Let''s Encrypt': 'https/acme.md'
|
2022-09-30 15:20:08 +02:00
|
|
|
- 'Tailscale': 'https/tailscale.md'
|
2022-10-14 17:16:08 +02:00
|
|
|
- 'SPIFFE': 'https/spiffe.md'
|
2019-02-26 05:50:07 -08:00
|
|
|
- 'Middlewares':
|
2021-06-11 15:30:05 +02:00
|
|
|
- 'Overview': 'middlewares/overview.md'
|
|
|
|
- 'HTTP':
|
|
|
|
- 'Overview': 'middlewares/http/overview.md'
|
|
|
|
- 'AddPrefix': 'middlewares/http/addprefix.md'
|
|
|
|
- 'BasicAuth': 'middlewares/http/basicauth.md'
|
|
|
|
- 'Buffering': 'middlewares/http/buffering.md'
|
|
|
|
- 'Chain': 'middlewares/http/chain.md'
|
|
|
|
- 'CircuitBreaker': 'middlewares/http/circuitbreaker.md'
|
|
|
|
- 'Compress': 'middlewares/http/compress.md'
|
|
|
|
- 'ContentType': 'middlewares/http/contenttype.md'
|
|
|
|
- 'DigestAuth': 'middlewares/http/digestauth.md'
|
|
|
|
- 'Errors': 'middlewares/http/errorpages.md'
|
|
|
|
- 'ForwardAuth': 'middlewares/http/forwardauth.md'
|
2022-10-27 17:34:06 +02:00
|
|
|
- 'GrpcWeb': 'middlewares/http/grpcweb.md'
|
2021-06-11 15:30:05 +02:00
|
|
|
- 'Headers': 'middlewares/http/headers.md'
|
2024-01-02 17:04:06 +01:00
|
|
|
- 'IPWhiteList': 'middlewares/http/ipwhitelist.md'
|
|
|
|
- 'IPAllowList': 'middlewares/http/ipallowlist.md'
|
2021-06-11 15:30:05 +02:00
|
|
|
- 'InFlightReq': 'middlewares/http/inflightreq.md'
|
|
|
|
- 'PassTLSClientCert': 'middlewares/http/passtlsclientcert.md'
|
|
|
|
- 'RateLimit': 'middlewares/http/ratelimit.md'
|
|
|
|
- 'RedirectRegex': 'middlewares/http/redirectregex.md'
|
|
|
|
- 'RedirectScheme': 'middlewares/http/redirectscheme.md'
|
|
|
|
- 'ReplacePath': 'middlewares/http/replacepath.md'
|
|
|
|
- 'ReplacePathRegex': 'middlewares/http/replacepathregex.md'
|
|
|
|
- 'Retry': 'middlewares/http/retry.md'
|
|
|
|
- 'StripPrefix': 'middlewares/http/stripprefix.md'
|
|
|
|
- 'StripPrefixRegex': 'middlewares/http/stripprefixregex.md'
|
|
|
|
- 'TCP':
|
|
|
|
- 'Overview': 'middlewares/tcp/overview.md'
|
2021-11-29 17:12:06 +01:00
|
|
|
- 'InFlightConn': 'middlewares/tcp/inflightconn.md'
|
2024-01-02 17:04:06 +01:00
|
|
|
- 'IPWhiteList': 'middlewares/tcp/ipwhitelist.md'
|
|
|
|
- 'IPAllowList': 'middlewares/tcp/ipallowlist.md'
|
2022-07-12 11:48:13 +02:00
|
|
|
- 'Plugins & Plugin Catalog': 'plugins/index.md'
|
2019-02-26 05:50:07 -08:00
|
|
|
- 'Operations':
|
|
|
|
- 'CLI': 'operations/cli.md'
|
|
|
|
- 'Dashboard' : 'operations/dashboard.md'
|
2019-06-19 18:34:04 +02:00
|
|
|
- 'API': 'operations/api.md'
|
2019-02-26 05:50:07 -08:00
|
|
|
- 'Ping': 'operations/ping.md'
|
|
|
|
- 'Observability':
|
2024-01-30 16:28:05 +01:00
|
|
|
- 'Overview': 'observability/overview.md'
|
2019-02-26 05:50:07 -08:00
|
|
|
- 'Logs': 'observability/logs.md'
|
|
|
|
- 'Access Logs': 'observability/access-logs.md'
|
2019-07-18 21:36:05 +02:00
|
|
|
- 'Metrics':
|
|
|
|
- 'Overview': 'observability/metrics/overview.md'
|
2024-01-29 17:08:05 +01:00
|
|
|
- 'Datadog': 'observability/metrics/datadog.md'
|
|
|
|
- 'InfluxDB2': 'observability/metrics/influxdb2.md'
|
2022-11-29 15:34:05 +01:00
|
|
|
- 'OpenTelemetry': 'observability/metrics/opentelemetry.md'
|
2024-01-29 17:08:05 +01:00
|
|
|
- 'Prometheus': 'observability/metrics/prometheus.md'
|
|
|
|
- 'StatsD': 'observability/metrics/statsd.md'
|
2019-06-28 00:16:04 +02:00
|
|
|
- 'Tracing':
|
|
|
|
- 'Overview': 'observability/tracing/overview.md'
|
2022-11-29 15:34:05 +01:00
|
|
|
- 'OpenTelemetry': 'observability/tracing/opentelemetry.md'
|
2025-04-18 07:12:04 +01:00
|
|
|
- 'Security':
|
2025-05-07 08:16:04 +01:00
|
|
|
- 'Content-Length': 'security/content-length.md'
|
|
|
|
- 'TLS in Multi-Tenant Kubernetes': 'security/tls-certs-in-multi-tenant-kubernetes.md'
|
2019-03-27 15:16:04 +01:00
|
|
|
- 'User Guides':
|
2024-09-26 11:00:05 +02:00
|
|
|
- 'FastProxy': 'user-guides/fastproxy.md'
|
2019-03-27 15:16:04 +01:00
|
|
|
- 'Kubernetes and Let''s Encrypt': 'user-guides/crd-acme/index.md'
|
2024-10-30 15:54:04 +01:00
|
|
|
- 'Kubernetes and cert-manager': 'user-guides/cert-manager.md'
|
2019-07-01 15:28:04 +02:00
|
|
|
- 'gRPC Examples': 'user-guides/grpc.md'
|
2025-05-28 04:46:04 -05:00
|
|
|
- 'WebSocket Examples': 'user-guides/websocket.md'
|
2019-08-06 17:46:04 +02:00
|
|
|
- 'Docker':
|
|
|
|
- 'Basic Example': 'user-guides/docker-compose/basic-example/index.md'
|
|
|
|
- 'HTTPS with Let''s Encrypt':
|
|
|
|
- 'TLS Challenge': 'user-guides/docker-compose/acme-tls/index.md'
|
|
|
|
- 'HTTP Challenge': 'user-guides/docker-compose/acme-http/index.md'
|
|
|
|
- 'DNS Challenge': 'user-guides/docker-compose/acme-dns/index.md'
|
2019-08-31 09:28:04 +02:00
|
|
|
- 'Migration':
|
2024-06-21 14:56:03 +02:00
|
|
|
- 'Traefik v3 minor migrations': 'migration/v3.md'
|
2024-06-06 18:52:04 +05:30
|
|
|
- 'Traefik v2 to v3':
|
|
|
|
- 'Migration guide': 'migration/v2-to-v3.md'
|
|
|
|
- 'Configuration changes for v3': 'migration/v2-to-v3-details.md'
|
2019-12-12 17:06:05 +01:00
|
|
|
- 'Traefik v2 minor migrations': 'migration/v2.md'
|
2019-08-31 09:28:04 +02:00
|
|
|
- 'Traefik v1 to v2': 'migration/v1-to-v2.md'
|
2019-02-26 05:50:07 -08:00
|
|
|
- 'Contributing':
|
|
|
|
- 'Thank You!': 'contributing/thank-you.md'
|
|
|
|
- 'Submitting Issues': 'contributing/submitting-issues.md'
|
|
|
|
- 'Submitting PRs': 'contributing/submitting-pull-requests.md'
|
2019-11-15 04:48:05 -05:00
|
|
|
- 'Security': 'contributing/submitting-security-issues.md'
|
2019-02-26 05:50:07 -08:00
|
|
|
- 'Building and Testing': 'contributing/building-testing.md'
|
|
|
|
- 'Documentation': 'contributing/documentation.md'
|
|
|
|
- 'Data Collection': 'contributing/data-collection.md'
|
|
|
|
- 'Advocating': 'contributing/advocating.md'
|
2019-03-18 12:04:04 +01:00
|
|
|
- 'Maintainers': 'contributing/maintainers.md'
|
2024-12-06 10:14:07 +01:00
|
|
|
- 'Reference':
|
|
|
|
- 'Install Configuration':
|
|
|
|
- 'Boot Environment': 'reference/install-configuration/boot-environment.md'
|
|
|
|
- 'Configuration Discovery':
|
|
|
|
- 'Overview' : 'reference/install-configuration/providers/overview.md'
|
|
|
|
- 'Kubernetes':
|
|
|
|
- 'Kubernetes Gateway API' : 'reference/install-configuration/providers/kubernetes/kubernetes-gateway.md'
|
|
|
|
- 'Kubernetes CRD' : 'reference/install-configuration/providers/kubernetes/kubernetes-crd.md'
|
|
|
|
- 'Kubernetes Ingress' : 'reference/install-configuration/providers/kubernetes/kubernetes-ingress.md'
|
|
|
|
- 'Docker': 'reference/install-configuration/providers/docker.md'
|
|
|
|
- 'Swarm': 'reference/install-configuration/providers/swarm.md'
|
|
|
|
- 'Hashicorp':
|
|
|
|
- 'Nomad': "reference/install-configuration/providers/hashicorp/nomad.md"
|
|
|
|
- 'Consul': 'reference/install-configuration/providers/hashicorp/consul.md'
|
|
|
|
- 'Consul Catalog': 'reference/install-configuration/providers/hashicorp/consul-catalog.md'
|
2025-04-18 10:45:03 +02:00
|
|
|
- 'KV Stores':
|
2024-12-06 10:14:07 +01:00
|
|
|
- 'Redis': 'reference/install-configuration/providers/kv/redis.md'
|
|
|
|
- 'Consul': 'reference/install-configuration/providers/kv/consul.md'
|
|
|
|
- 'etcd': 'reference/install-configuration/providers/kv/etcd.md'
|
|
|
|
- 'ZooKeeper' : 'reference/install-configuration/providers/kv/zk.md'
|
|
|
|
- 'Others':
|
|
|
|
- 'File': 'reference/install-configuration/providers/others/file.md'
|
|
|
|
- 'ECS': 'reference/install-configuration/providers/others/ecs.md'
|
|
|
|
- 'HTTP': 'reference/install-configuration/providers/others/http.md'
|
|
|
|
- 'EntryPoints': 'reference/install-configuration/entrypoints.md'
|
|
|
|
- 'API & Dashboard': 'reference/install-configuration/api-dashboard.md'
|
|
|
|
- 'TLS':
|
|
|
|
- 'Certificate Resolvers':
|
|
|
|
- "Overview" : 'reference/install-configuration/tls/certificate-resolvers/overview.md'
|
|
|
|
- "ACME" : 'reference/install-configuration/tls/certificate-resolvers/acme.md'
|
|
|
|
- "Tailscale" : 'reference/install-configuration/tls/certificate-resolvers/tailscale.md'
|
|
|
|
- "SPIFFE" : 'reference/install-configuration/tls/spiffe.md'
|
|
|
|
- 'Observability':
|
|
|
|
- 'Metrics' : 'reference/install-configuration/observability/metrics.md'
|
|
|
|
- 'Tracing': 'reference/install-configuration/observability/tracing.md'
|
|
|
|
- 'Logs & AccessLogs': 'reference/install-configuration/observability/logs-and-accesslogs.md'
|
|
|
|
- 'Health Check (CLI & Ping)': 'reference/install-configuration/observability/healthcheck.md'
|
|
|
|
# - 'Options List': 'reference/install-configuration/cli-options-list.md' -- Todo
|
2025-03-10 14:28:06 +00:00
|
|
|
- 'Routing Configuration':
|
2025-04-18 10:45:03 +02:00
|
|
|
- 'General' :
|
2025-03-10 14:28:06 +00:00
|
|
|
- 'Configuration Methods' : 'reference/routing-configuration/dynamic-configuration-methods.md'
|
2025-04-18 10:45:03 +02:00
|
|
|
- 'HTTP' :
|
2025-03-10 14:28:06 +00:00
|
|
|
- 'Router' :
|
|
|
|
- 'Rules & Priority' : 'reference/routing-configuration/http/router/rules-and-priority.md'
|
|
|
|
- 'Observability': 'reference/routing-configuration/http/router/observability.md'
|
|
|
|
- 'Load Balancing' :
|
|
|
|
- 'Service' : 'reference/routing-configuration/http/load-balancing/service.md'
|
|
|
|
- 'ServersTransport' : 'reference/routing-configuration/http/load-balancing/serverstransport.md'
|
2025-04-18 10:45:03 +02:00
|
|
|
- 'TLS' :
|
2025-03-10 14:28:06 +00:00
|
|
|
- 'Overview' : 'reference/routing-configuration/http/tls/overview.md'
|
|
|
|
- 'TLS Certificates' : 'reference/routing-configuration/http/tls/tls-certificates.md'
|
|
|
|
- 'TLS Options' : 'reference/routing-configuration/http/tls/tls-options.md'
|
2025-04-18 10:45:03 +02:00
|
|
|
- 'Middlewares' :
|
2025-03-10 14:28:06 +00:00
|
|
|
- 'Overview' : 'reference/routing-configuration/http/middlewares/overview.md'
|
2025-04-18 10:45:03 +02:00
|
|
|
- 'AddPrefix' : 'reference/routing-configuration/http/middlewares/addprefix.md'
|
2025-03-10 14:28:06 +00:00
|
|
|
- 'BasicAuth' : 'reference/routing-configuration/http/middlewares/basicauth.md'
|
|
|
|
- 'Buffering': 'reference/routing-configuration/http/middlewares/buffering.md'
|
|
|
|
- 'Chain': 'reference/routing-configuration/http/middlewares/chain.md'
|
|
|
|
- 'Circuit Breaker' : 'reference/routing-configuration/http/middlewares/circuitbreaker.md'
|
|
|
|
- 'Compress': 'reference/routing-configuration/http/middlewares/compress.md'
|
|
|
|
- 'ContentType': 'reference/routing-configuration/http/middlewares/contenttype.md'
|
|
|
|
- 'DigestAuth': 'reference/routing-configuration/http/middlewares/digestauth.md'
|
|
|
|
- 'Errors': 'reference/routing-configuration/http/middlewares/errorpages.md'
|
|
|
|
- 'ForwardAuth': 'reference/routing-configuration/http/middlewares/forwardauth.md'
|
|
|
|
- 'GrpcWeb': 'reference/routing-configuration/http/middlewares/grpcweb.md'
|
|
|
|
- 'Headers': 'reference/routing-configuration/http/middlewares/headers.md'
|
|
|
|
- 'IPAllowList': 'reference/routing-configuration/http/middlewares/ipallowlist.md'
|
|
|
|
- 'InFlightReq': 'reference/routing-configuration/http/middlewares/inflightreq.md'
|
|
|
|
- 'PassTLSClientCert': 'reference/routing-configuration/http/middlewares/passtlsclientcert.md'
|
|
|
|
- 'RateLimit': 'reference/routing-configuration/http/middlewares/ratelimit.md'
|
|
|
|
- 'RedirectRegex': 'reference/routing-configuration/http/middlewares/redirectregex.md'
|
|
|
|
- 'RedirectScheme': 'reference/routing-configuration/http/middlewares/redirectscheme.md'
|
|
|
|
- 'ReplacePath': 'reference/routing-configuration/http/middlewares/replacepath.md'
|
|
|
|
- 'ReplacePathRegex': 'reference/routing-configuration/http/middlewares/replacepathregex.md'
|
|
|
|
- 'Retry': 'reference/routing-configuration/http/middlewares/retry.md'
|
|
|
|
- 'StripPrefix': 'reference/routing-configuration/http/middlewares/stripprefix.md'
|
|
|
|
- 'StripPrefixRegex': 'reference/routing-configuration/http/middlewares/stripprefixregex.md'
|
|
|
|
- 'TCP' :
|
2025-04-18 10:45:03 +02:00
|
|
|
- 'Router' :
|
2025-03-10 14:28:06 +00:00
|
|
|
- 'Rules & Priority' : 'reference/routing-configuration/tcp/router/rules-and-priority.md'
|
|
|
|
- 'Service' : 'reference/routing-configuration/tcp/service.md'
|
|
|
|
- 'ServersTransport' : 'reference/routing-configuration/tcp/serverstransport.md'
|
|
|
|
- 'TLS' : 'reference/routing-configuration/tcp/tls.md'
|
|
|
|
- 'Middlewares' :
|
|
|
|
- 'Overview' : 'reference/routing-configuration/tcp/middlewares/overview.md'
|
|
|
|
- 'InFlightConn' : 'reference/routing-configuration/tcp/middlewares/inflightconn.md'
|
|
|
|
- 'IPAllowList' : 'reference/routing-configuration/tcp/middlewares/ipallowlist.md'
|
|
|
|
- 'UDP' :
|
|
|
|
- 'Router' :
|
|
|
|
- 'Rules & Priority' : 'reference/routing-configuration/udp/router/rules-priority.md'
|
|
|
|
- 'Service' : 'reference/routing-configuration/udp/service.md'
|
|
|
|
- 'Kubernetes':
|
|
|
|
- 'Gateway API' : 'reference/routing-configuration/kubernetes/gateway-api.md'
|
2025-04-18 10:45:03 +02:00
|
|
|
- 'Kubernetes CRD' :
|
2025-03-10 14:28:06 +00:00
|
|
|
- 'HTTP' :
|
|
|
|
- 'IngressRoute' : 'reference/routing-configuration/kubernetes/crd/http/ingressroute.md'
|
|
|
|
- 'TraefikService' : 'reference/routing-configuration/kubernetes/crd/http/traefikservice.md'
|
|
|
|
- 'ServersTransport' : 'reference/routing-configuration/kubernetes/crd/http/serverstransport.md'
|
|
|
|
- 'Middleware' : 'reference/routing-configuration/kubernetes/crd/http/middleware.md'
|
|
|
|
- 'TLSOption' : 'reference/routing-configuration/kubernetes/crd/http/tlsoption.md'
|
|
|
|
- 'TLSStore' : 'reference/routing-configuration/kubernetes/crd/http/tlsstore.md'
|
|
|
|
- 'TCP' :
|
|
|
|
- 'IngressRouteTCP' : 'reference/routing-configuration/kubernetes/crd/tcp/ingressroutetcp.md'
|
|
|
|
- 'ServersTransportTCP' : 'reference/routing-configuration/kubernetes/crd/tcp/serverstransporttcp.md'
|
|
|
|
- 'MiddlewareTCP' : 'reference/routing-configuration/kubernetes/crd/tcp/middlewaretcp.md'
|
|
|
|
- 'TLSOption' : 'reference/routing-configuration/kubernetes/crd/tcp/tlsoption.md'
|
|
|
|
- 'TLSStore' : 'reference/routing-configuration/kubernetes/crd/tcp/tlsstore.md'
|
|
|
|
- 'UDP' :
|
|
|
|
- 'IngressRouteUDP' : 'reference/routing-configuration/kubernetes/crd/udp/ingressrouteudp.md'
|
|
|
|
- 'Ingress' : 'reference/routing-configuration/kubernetes/ingress.md'
|
|
|
|
- 'Label & Tag Providers' :
|
|
|
|
- 'Docker' : 'reference/routing-configuration/other-providers/docker.md'
|
|
|
|
- 'Swarm' : 'reference/routing-configuration/other-providers/swarm.md'
|
|
|
|
- 'Consul Catalog' : 'reference/routing-configuration/other-providers/consul-catalog.md'
|
|
|
|
- 'Nomad' : 'reference/routing-configuration/other-providers/nomad.md'
|
|
|
|
- 'ECS' : 'reference/routing-configuration/other-providers/ecs.md'
|
|
|
|
- 'KV' : 'reference/routing-configuration/other-providers/kv.md'
|
2022-03-17 06:28:09 -03:00
|
|
|
- 'Deprecation Notices':
|
|
|
|
- 'Releases': 'deprecation/releases.md'
|
2022-03-24 08:28:07 -03:00
|
|
|
- 'Features': 'deprecation/features.md'
|