Hi;
 
Our local computer club have a linux box running Apache and Tomcat (latest stable build), and want to configure Tomcat so that it can serve pages not just under $TOMCAT_HOME/webapps, but also in the /home/*/www directories (the www-dir of each user on the machine).
 
We have tried almost everything, but the only way we can get it to work is by adding
 
Alias /~userX "/home/userX/www"
<Directory "/home/userX/www">
    Options Indexes FollowSymLinks
</Directory>
ApJServMount /~userX/servlet /~userX
 
to the tomcat-apache.conf for each user in the /home dir. There must be some better way to do this?
Regards,
- Mikael.

Reply via email to