Hi All,
 
We are using Tomact3.2.3 and Apache1.3.20 with mod_jk.so.
 
it works fine when use Directory:
 
    Alias /loc "/home/.../path"
 
    <Directory "/home/.../path">
        Options Indexes FollowSymLinks
    </Directory>
    JkMount /loc/servlet/* ajp12
    JkMount /loc/*.jsp ajp12
 
But when trying virtual hosting:
   
NameVirutalHost ip
   
    <VirtualHost ip>
        ServerName www.domain.com
        DocumentRoot "/home/.../path"
        JkMount /servlet/* ajp12
        JkMount /*.jsp ajp12
    <Directory "/home/.../path">
        Options Includes Indexes FollowSymlinks
        AllowOverride AuthConfig FileInfo Indexes Limit Options
        Order allow, deny
        Allow from all
    </Directory>
 
    </VirtualHost>
 
WE are geting 404 error for all .jsp files and looks like the apache to tomcat redirect not works
 
anything missing?
 
 
TIA
 
Jerry
 
 
 
   
 

Reply via email to