I have a mix of docker dynamic config and file based dynamic config. Both types are generally working. They are all configured to use the certresolver=leresolver that is defined statically.
In the dashboard, the entries with provider=file do not show the cert resolver:
In contrast , the entries with provider=docker show the cert resolver correctly:
I cannot find any functional problems though.
My file based configs are generally like this:
http:
# Add the router
routers:
launchpad:
entryPoints:
- websecure
middlewares:
- usersfile
service: launchpad
rule: Host(`launchpad.mydomain`)
tls:
certresolver: leresolver
domains:
- main: mydomain
sans:
- "*.mydomain"
# Add the service
services:
launchpad:
loadBalancer:
servers:
- url: http://192.168.1.130:8000/index.html
passHostHeader: true
Am I missing something here?
regards
Steve