Close connection if no router match

Hello traefik community,
I'm looking for a way to indicate traefik to close connection if no router matches for an entrypoint.

My current configuration is an entrypoint that have a TCP router with a rule like HostSNI(`foobar.example.org`).
TCP traffic works correctly, but it seems that when I curl the entrypoint port using curl with http or https, I got a "404 route not found".

Having a HTTP or HTTPS response on this port is a problem for me.
Is there a way to indicate to traefik that if no router matches, then it should close the connection, so no valid HTTP/HTTPS is returned ?

Thanks,
Romain

I'm also looking for an easy way to close the connection without returning any RESPONSE on Treafik. Just like Nginx's 444:

server {
     listen 80 default_server;
     server_name_;
     return 444;
}

I am not an expert, you could probably have a second TCP router with

HostSNI(`*`) # shorter length -> lower priority -> fallback

to a service that just closes the connection (or returns an empty response).