Hello,

We are starting to design a ISP level JSP virutal hosting system which
could serve JSP and Servlets.

Here are some thing i decide to to:

Apache 2.0.52(RHEL 4 default installation)
Tomcat 5.5.20 (http://tomcat.apache.org)
Tomcat connector 1.2.18(http://tomcat.apache.org)

Add the follow lines in httpd.conf

JkWorkersFile /usr/local/tomcat/conf/jk/workers.properties
JkLogFile     /etc/httpd/logs/mod_jk.log
JkLogLevel    info
JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
<Location "/WEB-INF/">
    AllowOverride None
    deny from all
</Location>
<Location "/META-INF/">
    AllowOverride None
    deny from all
</Location>

Then here is a example <VirtualHost> in httpd.conf

<VirtualHost 1.2.3.4>
SuexecUserGroup wangph clients
ServerAdmin [EMAIL PROTECTED]
ServerName wangph.example.com
DocumentRoot "/home/wangph/wwwroot"
ScriptAlias /cgi-bin/ /home/wangph/wwwroot/cgi-bin/
ScriptAlias /perl/ /home/wangph/wwwroot/cgi-bin/
ErrorLog logs/error_log
        JkMount /*.jsp ajp13
        JkMount /servlet/* ajp13
</VirtualHost>

And here is a example <Host> in server.xml

<Host className="org.apache.catalina.core.StandardHost" appBase=""
autoDeploy="true"
configClass="org.apache.catalina.startup.ContextConfig"
contextClass="org.apache.catalina.core.StandardContext" debug="0"
deployXML="true"
errorReportValveClass="org.apache.catalina.valves.ErrorReportValve"
liveDeploy="true"
mapperClass="org.apache.catalina.core.StandardHostMapper"
name="wangph.example.com" unpackWARs="true">
<Context path="" docBase="/home/wangph/wwwroot" reloadable="true"
debug="0"/>
</Host>

I leave appBase blank. And point the docBase to the apache virtual
documentroot.


If i add a new virtual host, simply add one <VirutalHost> in httpd.conf
and one <Host> in server.xml.

Is there any problem?

Thanks very much

Wang Penghui


---------------------------------------------------------------------
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