I want to restrict web access to a specific web app to only allow it to be available on our domain.
If I put the following nested in the <Host> element of my server.xml, is that the right way to do it? <Context path="/mywebapp" docBase="mywebapp" debug=0 privileged="true" <Valve className="org.apache.catalina.valves.RemoteAddrValve" allow="176.24.*.*"/> /> Leo Donahue