Return-Path: Mailing-List: contact tomcat-user-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list tomcat-user@jakarta.apache.org Received: (qmail 57189 invoked from network); 3 May 2000 12:57:52 -0000 Received: from unknown (HELO mail.advantys.fr) (193.105.11.2) by locus.apache.org with SMTP; 3 May 2000 12:57:52 -0000 Received: from pluton (unverified [123.123.123.210]) by mail.advantys.fr (EMWAC SMTPRS 0.83) with SMTP id ; Wed, 03 May 2000 15:06:16 +0200 Message-ID: <004801bfb4ff$20b00550$d27b7b7b@pluton> From: "Julien BARRET" To: References: <20000503122653.45785.qmail@hotmail.com> Subject: Beginner question about Tomcat & Apache Date: Wed, 3 May 2000 14:57:24 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 X-Spam-Rating: locus.apache.org 1.6.2 0/1000/N Dear Tomcat gurus, I would like to share a directory between apache and Tomcat. Apache will serve html pages while Tomcat will deal with jsp ones... By reading the Tomcat user guide, this sounds to be easy... but it is not! :-) What I first done was to create a jsp sub-directory in my site directory in wich I put all my jsp pages. So my directory layout is : /mysite => *.html /mysite/jsp => *.jsp This is working fine, but I would like to have only a single directory mixing html and jsp files. Here is the tomcat-apache.con I appended to the httpd.conf: LoadModule jserv_module libexec/mod_jserv.so ApJServManual on ApJServSecretKey DISABLED ApJServMountCopy on ApJServLogLevel notice ApJServDefaultProtocol ajpv12 ApJServDefaultHost 123.123.123.145 ApJServDefaultPort 8007 Alias /mysite /usr/local/apache/mysite ApJServMount /mysite/jsp /usr/local/apache/mysite/jsp Does somebody can help ? Last question : Do I have to add a context in the server.xml file ? Thanks a lot for any help...