I had 
JkMount /jsp-examples         worker1

and now the problem is gone... Thanks

I have one more question, let's take /jsp-examples to explain...
I want *.jsp send to tomcat for processing but all static contents processed
by apache, how can I do this?
Sorry for all the question but I'm new to all this tomcat configuration and
I don't have much time to read all the docs... I need to get this to work by
Wednesday...

So, once more, thanks for the solutions...


Christopher Schultz-2 wrote:
> 
> Bruno,
> 
>> when I try
>> http://localhost/jsp-examples http://localhost/jsp-examples  (without the
>> /)
>> I get this error:
>> 
>> Forbidden
>> You don't have permission to access /jsp-examples on this server.
>> Additionally, a 403 Forbidden error was encountered while trying to use
>> an
>> ErrorDocument to handle the request.
> 
> It looks like you have Indexes turned off for this directory/location in
> httpd.conf, or you don't have an index.html (or whatever) file there to
> display.
> 
> In that case, it's not surprising that Apache httpd is generating this
> error (note that it's httpd, not Tomcat, that is generating the error).
> 
> If you want Tomcat to respond to requests for the URI with no trailing
> slash, you'll have to map that explicitly.
> 
>> Here's my jk.conf (/etc/apache2/conf.d/jk.conf):
>> 
>> http://www.nabble.com/file/3907/jk.conf jk.conf 
> 
> I'm guessing that was a copy/paste error. Let me guess what you have in
> jk.conf:
> 
> JkMount /jsp-examples/*       worker1
> and/or
> JkMount /jsp-examples/*.jsp   worker1
> 
> Since "/jsp-examples" does not match "/jsp-examples/*", your mappings
> are failing. You'll need to add something like:
> 
> JkMount /jsp-examples         worker1
> 
> Hope that helps,
> -chris
> 
> 
>  
> 

-- 
View this message in context: 
http://www.nabble.com/mod_jk-configuration-tf2539505.html#a7077657
Sent from the Tomcat - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to