Ty for your answer!
So traefik.yml is the "static" configuration.
and lets say a file called "other.yml" is the dynamic what placed lets say next to the traefik.yml contains only:
http:
routers:
my-router:
rule: "Host(`example.false.webredirect.org`)"
service: my-service
services:
my-service:
loadBalancer:
servers:
- url: "http://192.168.0.180:80"
and the traefik.yml looks something like:
api:
insecure: true
providers:
docker:
exposedbydefault: false
network: proxy
entryPoints:
web:
address: :80
http:
redirections:
entrypoint:
to: websecure
scheme: https
websecure:
address: :443
http:
tls:
# Generate a wildcard domain certificate
certResolver: letsencrypt
domains:
- main: false.webredirect.org
sans:
- '*.false.webredirect.org'
ping: true
certificatesResolvers:
letsencrypt:
acme:
email: ionized@protonmail.com
storage: /letsencrypt/acme.json
dnsChallenge:
provider: dynu
resolvers:
- '1.1.1.1'
- '1.0.0.1'
providers:
file:
filename: ./other.yml
Or i messed it up