You can't in any way stop anybody else from pointing to your webserver. What you can do is to server up a web site that will inform people that the domain is not hosted by you. There's some information about how virtualhosts work at the Tomcat documentation site.
If we assume that you have two domains that you want to host, and anything that doesn't match them should be shown the same "this domain doesn't live here" page, you'd have your first <Host ...>
item be <Host name="localhost" ...>
. That will be the default site loaded when there's no other site that matches. Then you'd add another <Host real.domain.com ...>
for each of the domains that you actually want to serve.
In order to have the same content for two domain names, e.g. with/without "www", you use <Alias>www.mydomain.com</Alias>
within the <Host>
element.
And, for the "not my domain" page, you just create a separate application directory containing suitable web pages, and have that as the appBase
for the "localhost" virtual host.