Hi,
I am running Traefik 2.4.8 and have both Docker and File providers configured. Testing with basic auth with one of my file providers/hosts but doesn't work (no basic auth dialog appears)
http:
routers:
custom:
rule: Host(`sub.mydomain.com`)
service: custom
tls:
certresolver: le
services:
custom:
loadBalancer:
servers:
- url: http://192.168.1.100:80
middlewares:
custom:
basicAuth:
users:
- test:$$apr1$$H6uskkkW$$IgXLP6ewTrSuBkTrqE8wj/
Do I need to enable something else to make it work?