Satya - Saturday, May 13, 2006 9:20:42 AM
How do you set this up?
domain1 uses context1 domain2 uses context2 domain1 and domain2 uses common_context
satya - Saturday, May 13, 2006 8:29:49 AM
How does virtual hosting work in tomcat?
It uses the host tag in connections with contexts. I am not too clear on this yet.
annonymous - Saturday, May 13, 2006 8:34:05 AM
What is appbase?
What is this used for?
annonymous - Saturday, May 13, 2006 8:34:55 AM
Can I have context shared between two virtual hosts?
Is this possible?
annonymous - Saturday, May 13, 2006 9:23:29 AM
Write an article on setting up virtual hosts..
Elaborate on sharing contexts. Elaborate default host, crosscontext, appbase and comment on any other parameters related to
1. host 2. context 3. Engine
annonymous - Saturday, May 13, 2006 9:24:57 AM
Keywords
host context Engine appbase context sharing
Satya - Saturday, May 13, 2006 9:31:12 AM
Tomcat 5.5 docs
satya - Saturday, May 13, 2006 1:13:23 PM
How does one use or benefit from crossContext?
Can one use this for reusing contexts across virtual hosts? What is its intended use? How compatible is it with other web containers?
Satya - Saturday, May 13, 2006 1:14:15 PM
How does tomcat virtual solution compares to apache?
Will apache be the solution to this? How does the virtual hosting differ there?
Satya - Friday, May 19, 2006 10:57:03 AM
Sample alias setup
<Host name="www.knowledgefolders.com"
appBase="D:/webpage_demos/akc"
unpackWARs="true"
autoDeploy="true"
xmlValidation="false"
xmlNamespaceAware="false">
<Alias>knowledgefolders.com</Alias>
<Alias>www.knowledgefolders.net</Alias>
<Alias>knowledgefolders.net</Alias>
<Alias>www.knowledgefolders.org</Alias>
<Alias>knowledgefolders.org</Alias>
<Context path="" docBase="D:/webpage_demos/akc"
debug="0" reloadable="false"/>
<Context path="/akc" docBase="D:/webpage_demos/akc"
debug="0" reloadable="false"/>
</Host>