Hi,
When Traefik receives unencrypted http requests on port 443, it allows it through and returns a 404 response. It should be rejecting the client request since the client doesn't present any certificate.
I have added the following tls stanza to all my routers:
tls:
options: default
and this is my websecure entrypoint:
entryPoints:
websecure:
address: ":443"
http:
tls:
options: default
I do not have a web entrypoint.
Is there anything that I'm missing in the traefik configuration that will stop http requests from getting through to the traefik routers on an https port?