We use traefik as a reverse proxy for a iis hosted website. The iis hosted website runs on http / port 80
The traefik dynamic conf is realy basic:
http:
routers:
view:
entryPoints:
- "https"
rule: "Host(view.app.tuevth.de
)"
tls: {}
service: view
services:
view:
loadBalancer:
servers:
- url: "http://10.100.100.148"
When I browse the protected iis site via ip the basic auth prompt only comes once.
When I use the proxy url the prompt comes multiple times for every ressource.
Are there some headers I have to set in my config to get it work?
Best regards,
Robert