Traefik redirection - unusual scenario https with port 80

I have an unusual case generated form a Nessus tool http scan.

It scan this url https://foo.com:80

I have configured this entry points:

web:
    address: ":80"
    http:
      redirections:
        entryPoint:
          to: webssl
          scheme: https
          permanent: true
  webssl:
    address: ":443"

webssl is intent for use in routes with tls: true option.

Assuming an existent route on host foo.com, If we call https://foo.com every goes ok but... if we call https://foo.com:80 it fails with error 404 because the "web" entry point receive the call but it not redirects it to the webssl entry point.

Any ideas (if exists) how to solve this problem?.

I know this is not a common scenario but if is there a way to fix this i will appreciate the solution.

thanks!

People have been complaining that they can use http on an entrypoint even though TLS is activated. If that is still the case, you could simply activate TLS on web.

Thanks bluepuma77 we added web and webssl entrypoint on both routes and it worked perfectly.