I am using Traefik as reverseproxy in Azure Service Fabric. Suddenly facing issue in Traefik certificate. Receiving "TRAEFIK DEFAULT CERT" cert while accessing. Due to this application went down. When we restart the Traefik its working as expected. Any additional configuration needed.
Using following configuration
tls:
certificates:
- certFile: "./certs/fortraefik.crt"
keyFile: "./certs/fortraefik.key"
- certFile: ./certs/servicefabric.crt
keyFile: ./certs/servicefabric.key
stores:
default:
defaultCertificate:
certFile: "./certs/fortraefik.crt"
keyFile: "./certs/fortraefik.key"