23 lines
849 B
Markdown
23 lines
849 B
Markdown
# Traefik configutaion
|
|
|
|
I personally use this Traefik stack to serve my self-hosted service
|
|
|
|
* Split the static configuration and dynamic configuration
|
|
* Enable experimental https3
|
|
* File provider options in dynamic.yml (Used to customize Non-docker service)
|
|
* Enable the Wildcard Lets encrypt with Cloudflare API
|
|
* DNS challenge with no port open need
|
|
* Widcard options in traefik.yml
|
|
* Enable and encrypt the traefik dashboard with authfile
|
|
|
|
I disabled the auto proxy to newly added docker container in traefik. Just add the label in each container.
|
|
|
|
```yaml
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.subservice.rule=Host(`subservice.xxx.domain`)"
|
|
- "traefik.http.routers.subservice.entrypoints=websecure"
|
|
- "traefik.http.routers.subservice.tls.certresolver=letsencrypt"
|
|
```
|
|
|