I have a service that only exposes a TLS endpoint, with a self-signed certificate. I would like to make it available with my certificate, like all my other services (which are HTTP so the proxyfication I straightforward).
In practical terms, upon a connection to https://this-service.example.com
I would like Traefik to contact https://the-service-backend
, handshake through this self-signed cert, and make the call to the backend (and relay its response)
How can I do that?