What are some scenarios where you split dynamic and static content b/w
tomcat and apache?
if my app's context is /examples
I therefore have to accept that any path under /examples has to have
it's content avaliable
via the web app?
How do I have static content under Apache's doc root but still not have
to redefine documentroot
to point to tomcat's webapps?
<VirtualHost localhost>
DocumentRoot "D:\java\jakarta\jakarta-tomcat-4.0.3\webapps"
ServerName localhost
WebAppConnection myconn warp localhost:8008
WebAppDeploy examples myconn /examples
</VirtualHost>
Apache can only see my webapp if I define the Document as above.
How then can I refer to static content in apache's own document root?