Can tomcat perform ssl redirection by filtering host alias?
- by Stephen
Hi,
We have a tomcat server (6.0.20) running one web application behind two urls, e.g. www.foo and secure.foo
This is configured in the server.xml as one host with a single alias:
<Host name="www.foo" appBase="webapps">
<Context docBase="foo" path=""></Context>
<Alias>secure.foo</Alias>
</Host>
…