On 29/09/2009 08:53, Angelo Chen wrote:

Hi,

I use the mod_proxy to allow a tomcat's app running behind Apache server,
now I'd like to let Apache server handle some static contents:

www.example.com/information

the content of information is not part of tomcat app, but a directory in the
file system, what I'm doing now is a symbolic link is created to the
webapps, is there a way just let Apache server handle it? Thanks



Put this before the rest of the statements:

  ProxyPass /information !

The exclamation mark indicates that the path supplied should not be proxied.


p


ProxyPass /  http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
ProxyPreserveHost on




---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to