Well I tried that but no good... I'vre tried this and still nothing:

    # The following line makes apache aware of the location of
    # the /jsp-examples context
    Alias /jsp-examples "/srv/www/tomcat5/base/webapps/jsp-examples"
    <Directory "/srv/www/tomcat5/base/webapps/jsp-examples">
        Options Indexes FollowSymLinks
        AllowOverride AuthConfig
        
        DirectoryIndex index.html index.htm index.jsp
        Order allow,deny
        Allow from all
    </Directory>

    # Mount 'jsp-examples' directory inside webapps
    #JkMount /jsp-examples/* ajp13
    #JkMount /jsp-examples ajp13
    JkMount /jsp-examples/*.jsp  ajp13
    JkMount /jsp-examples/j_security_check ajp13 

I guess I have to tell tomcat to process all the things for now...


Christopher Schultz-2 wrote:
> 
> 
> But, since you want Apache httpd to handle all the static content,
> you'll have to decide what Tomcat /should/ handle. I would usually have
> something like this for each of my webapps:
> 
> JkMount /webappName/*.jsp  ajp13
> JkMount /webappName/j_security_check ajp13
> 
> This covers all JSPs as well as the built-in J2EE authentication system
> supported by Tomcat. If you have other URIs as well, then you should
> define them. There's nothing wrong with having a lot of JkMount
> directives:
> 

-- 
View this message in context: 
http://www.nabble.com/mod_jk-configuration-tf2539505.html#a7079096
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