@ldez ,
wooo hooo .... Got progress:)
so if anyone face situation with "ERR_TOO_MANY_REDIRECTS" --> it
coming actually from CF and not traefik.
it required to change the SSL/TLS setting from "Flexible"
which coming as default setting and encrypts traffic between the browser and CF,
to --> "Full" which encrypts end-to-end, using a self signed certificate on the server.
Now i'm to longing with :
https://traefik.mydomain.com
Can i also configure traefik so i be able to login to HA
with host-ip:8123 ?
I map a non-docker application which access from http://192.168.1.112:8089,
I tried adding the traefik labels but didn't work:
#qnap
# traefik.http.routers.qnap.rule: Host(`qnap.mydoamin.com`)
# traefik.http.routers.qnap.entrypoints: websecure
# traefik.http.services.qnap.loadbalancer.server.port: 8089
The only option i manage to get it work is by adding dynamic.yaml which as I understand from u - less recommend as it breaks the dynamic approach ,
http:
routers:
service-router:
entryPoints:
- websecure
service: service-qnap
rule: Host(`qnap.mydomain.com`)
tls:
certResolver: myresolver
services:
service-qnap:
loadBalancer:
servers:
- url: "http://192.168.1.112:8089"
is there a way adding/mapping a non-docker application to traefik without a separate file?
Thanks a lot @ldez - u are a saver!