  | Mailing List | | Home | | Forum Home | | JBoss - Java Application Server | | Tomcat - JSP/Servlet container | | Struts - A MVC web framework | | iText - An open source PDF Java Library | | JDOM - JDOM XML Parser | | J2EE - A mailing list for Java(tm) 2 Platform, Enterprise Edition | | JSP - A mailing list about Java Server Pages specification and reference | | J2EE Pattern - An interest list for Sun Java Center J2EE Pattern Catalog | | Servlet - A mailing list for discussion about Sun Microsystem's Java Servlet API Technology | |
Struts & Hibernate
|
|
|
  | | | Multiple <Host > designing. | Multiple <Host > designing. 2006-12-20 - By Wang Penghui
Back 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 root@(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@(protected) To unsubscribe, e-mail: users-unsubscribe@(protected) For additional commands, e-mail: users-help@(protected)
|
|
 |