On Tuesday 20 December 2005 17:19, Fenlason, Josh wrote:

> Alias /jsp-examples "D:/test/tomcat/webapps/jsp-examples"
> <Directory "D:/test/tomcat/webapps/jsp-examples">
>   Options Indexes FollowSymLinks
>   AllowOverride None
>   allow from all
> </Directory>
>
> ProxyPass /jsp-examples ajp://localhost:8009/jsp-examples
> ProxyPassReverse /jsp-examples ajp://localhost:8009/jsp-examples

That's a conflict: you're asking it to do two incompatible things with
requests matching /jsp-examples.

> This above configuration allows jsps to be served correctly, but I want
> to make sure that Apache is serving any static content under the
> /jsp-examples directory and not Tomcat.  Thanks in advance.

And how do you expect Apache to know that a request is "any static content"?
You would need to tell Apache how you expect it to make that decision.
The usual way to do that is to configure different behaviours for different
URLs.

-- 
Nick Kew

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to