greg
August 19, 2021, 5:17pm
1
Greetings
I'm trying to enable a communication between Traefik and a backend using self-signed certicate.
I've added:
- traefik.http.serversTransports.httpsNoVerify.insecureSkipVerify=true
- traefik.http.services.elasticsearch01.loadbalancer.serversTransport=httpsNoVerify
to the docker-compose file for the backend, but I have the error:
servers transport not found httpsNoVerify@docker
How can I properly created this transport?
Thanks in advance
Regards
GR
Regarding to the Traefik: Reference: Dynamic Configuration: Docker , firstly it shows us that the Docker label is all lower case as the following example.
- "traefik.http.services.<service_name>.loadbalancer.serverstransport=foobar"
Especially, there is no any mentioning about the serverstransports.<name>.insecureskipverify
within the Docker label !
This means and implies that we have to define it via the following methods.
1 Like
greg
August 20, 2021, 3:01pm
3
Thanks a lot!
Folowing, your advice, I deleted the mentions about a new transport and just added
--serverstransport.insecureskipverify
to the docker-compose.yml file for Trafik and it worked! Of course I would prefer not to activate tls at all on the backend, but it seems Elastic is rigid about it...
system
Closed
August 23, 2021, 3:02pm
4
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.