2019-12-09 20:08:04 +03:00
2023-05-10 16:28:05 +03:00
```yaml tab="Docker & Swarm"
2019-12-09 20:08:04 +03:00
## Dynamic configuration
labels:
2020-03-14 00:50:05 +03:00
- traefik.http.routers.blog.rule=Host(`example.com`) && Path(`/blog`)
2019-12-09 20:08:04 +03:00
- traefik.http.routers.blog.tls=true
2020-02-17 13:04:04 +03:00
- traefik.http.routers.blog.tls.certresolver=myresolver
2020-03-14 00:50:05 +03:00
- traefik.http.routers.blog.tls.domains[0].main=example.org
- traefik.http.routers.blog.tls.domains[0].sans=*.example.org
2019-12-09 20:08:04 +03:00
```
```yaml tab="Docker (Swarm)"
## Dynamic configuration
deploy:
labels:
2020-03-14 00:50:05 +03:00
- traefik.http.routers.blog.rule=Host(`example.com`) && Path(`/blog`)
2019-12-09 20:08:04 +03:00
- traefik.http.services.blog-svc.loadbalancer.server.port=8080"
- traefik.http.routers.blog.tls=true
2020-02-17 13:04:04 +03:00
- traefik.http.routers.blog.tls.certresolver=myresolver
2020-03-14 00:50:05 +03:00
- traefik.http.routers.blog.tls.domains[0].main=example.org
- traefik.http.routers.blog.tls.domains[0].sans=*.example.org
2019-12-09 20:08:04 +03:00
```
```yaml tab="Kubernetes"
2023-03-20 17:38:08 +03:00
apiVersion: traefik.io/v1alpha1
2019-12-09 20:08:04 +03:00
kind: IngressRoute
metadata:
name: blogtls
spec:
entryPoints:
- websecure
routes:
2020-03-14 00:50:05 +03:00
- match: Host(`example.com`) && Path(`/blog`)
2019-12-09 20:08:04 +03:00
kind: Rule
services:
- name: blog
port: 8080
tls:
2020-02-17 13:04:04 +03:00
certResolver: myresolver
2020-03-04 15:24:05 +03:00
domains:
2020-03-14 00:50:05 +03:00
- main: example.org
2020-03-04 15:24:05 +03:00
sans:
2020-07-03 16:18:03 +03:00
- '*.example.org'
2019-12-09 20:08:04 +03:00
```
```yaml tab="File (YAML)"
## Dynamic configuration
http:
routers:
blog:
2020-03-14 00:50:05 +03:00
rule: "Host(`example.com`) & & Path(`/blog`)"
2019-12-09 20:08:04 +03:00
tls:
2020-02-17 13:04:04 +03:00
certResolver: myresolver
2019-12-09 20:08:04 +03:00
domains:
2020-03-14 00:50:05 +03:00
- main: "example.org"
2019-12-09 20:08:04 +03:00
sans:
2020-03-14 00:50:05 +03:00
- "*.example.org"
2019-12-09 20:08:04 +03:00
```
2021-06-19 01:08:08 +03:00
```toml tab="File (TOML)"
## Dynamic configuration
[http.routers]
[http.routers.blog]
rule = "Host(`example.com`) & & Path(`/blog`)"
[http.routers.blog.tls]
certResolver = "myresolver" # From static configuration
[[http.routers.blog.tls.domains]]
main = "example.org"
sans = ["*.example.org"]
```