If your getting these in your apache logs then you don't have Apache configured to call Tomcat. Apache has to configured so that when it sees a URL ending in /examples that it passes it along to Tomcat. For instance, using mod_jk with ajp13 the following would do it:
JkMount /examples/* ajp13 This of course would be under the virtual host section for mysite.com So you may have something like: <VirtualHost xxx.xxx.xxx.xxx:80> DocumentRoot /home/httpd/htdocs/mysite ServerName mysite.com JkMount /*.jsp ajp13 JkMount /examples/* ajp13 </VirtualHost> Hope this helps. Ed On Thu, 2003-01-23 at 17:21, Chris Schild wrote: > I'm having the same problem. In the log files apache2/logs/COM_error_log I > get a: Directory index forbidden by rule: ???? Is there a definition in > http.conf that I need to alter??? > > > ----- Original Message ----- > From: "John Ruffin" <[EMAIL PROTECTED]> > To: "'Tomcat Users List'" <[EMAIL PROTECTED]> > Sent: Thursday, January 23, 2003 2:42 PM > Subject: RE: Virtual Hosts > > > > I'm having a similar issue. I'm running tc4.1.18 on w2k server. > > http://localhost/examples works but http://mysite.com/examples doesn't. I > > searched the archives and found some information on creating a host file > > with the FQDN as the name but that didn't seem to work. Is there > something > > else I need to change? Do I need to configure my firewall || router to > let > > additional ports through? Right now, port:80 (http) serves static content > > with no problem. > > > > I'm new - thanks for your help. > > > > -----Original Message----- > > From: Chris Schild [mailto:[EMAIL PROTECTED]] > > Sent: Thursday, January 23, 2003 1:16 PM > > To: Tomcat Users List > > Cc: [EMAIL PROTECTED] > > Subject: Re: Virtual Hosts > > > > > > Tom, > > I could possibly use some of the information. I am running on the same > > releases: Apache 2.0.43, Tomcat 4.1.18 & win2k. > > My problem is that I can't get to the directory of my virtualHosts. > > > > e.g. http://localhost/examples is not a problem BUT > > http://mysite.com/examples will not work. I just noticed an err in the > log > > saying - > > Directory index forbidden by rule: C:/Apache/Tomcat4.1/path/to/examples > > > > Can't find where to make my edits so the directory can be seen. > > > > Maybe this is a related issue? Either way if you know how to configure > the > > systems so that the directory will be shown, I would much appreciated it! > > > > ----- Original Message ----- > > From: "Tom Holmes Jr." <[EMAIL PROTECTED]> > > To: "Tomcat Users List" <[EMAIL PROTECTED]> > > Sent: Wednesday, January 22, 2003 11:37 PM > > Subject: Virtual Hosts > > > > > > > I have finally discovered the problem on why some of my web-apps are > > working > > > and some are not ... it is either my configuration or a MAJOR SERIOUS > BUG > > > with Apache 2.0.43 and Tomcat 4.1.18 on Windows 2000. > > > > > > I have included a copy of my httpd.conf file because it is the only one > > that > > > matters here. The server.xml file has one <Engine> tag and then it has > 4 > > > different <Host> tags with 1 <Context> for each virtual host. > > > > > > When we have two virtual host/web-apps listed below ONLY the JSP pages > > work > > > for the second web-app. They do NOT work for the first web-app listed. > > If > > > I flip these virtual hosts around and then restart the Apache/Tomcat > > server, > > > then the opposite is true. I then tried 3 web-apps and again ... ONLY > the > > > last web-app works and the JSP pages are correctly served. > > > > > > If anyone needs the other files: jk2.properties or workers2.properites > or > > > server.xml, please let me know and I can provide them. I am sure that > > these > > > files are ok. Switching the <Host> tags around in the <Engine> tag did > > not > > > seem to have any effect. > > > > > > I may try this same configuration on my Red Hat Linux 8.0 box and see if > > the > > > same problem happens. At least that way I could say the problem is > > > cross-platform or just limitations on the Windows 2000 versions. > > > > > > If I can be of any help, or if you need any more information, please let > > me > > > know. I ask that someone please look at this issue and my configuration > > and > > > recommend a solution. I really want to use Apache and Tomcat together, > > but > > > this is incredibly frustrating and should not be a problem. Thanks. > > > > > > Tom > > > > > > <VirtualHost *> > > > ServerName test.tomholmes.net > > > ServerAdmin [EMAIL PROTECTED] > > > DocumentRoot d:/web_software/jakarta-tomcat-4.1.18/wwwroot/test > > > <Location "/*.jsp"> > > > JkUriSet worker ajp13:localhost:8009 > > > </Location> > > > ErrorLog logs/test-error_log > > > CustomLog logs/test-access_log common > > > DirectoryIndex default.jsp index.jsp > > > </VirtualHost> > > > > > > <VirtualHost *> > > > ServerName meditech.tomholmes.net > > > ServerAdmin [EMAIL PROTECTED] > > > DocumentRoot d:/web_software/jakarta-tomcat-4.1.18/wwwroot/meditech > > > <Location "/*.jsp"> > > > JkUriSet uri meditech.tomholmes.net > > > JkUriSet worker ajp13:localhost:8009 > > > </Location> > > > ErrorLog logs/meditech-error_log > > > CustomLog logs/meditech-access_log common > > > DirectoryIndex default.jsp > > > </VirtualHost> > > > > > > > > > > > > -------------------------------------------------------------------------- > -- > > ---- > > > > > > > -- > > > To unsubscribe, e-mail: > > <mailto:[EMAIL PROTECTED]> > > > For additional commands, e-mail: > > <mailto:[EMAIL PROTECTED]> > > > > > > -- > > To unsubscribe, e-mail: > > <mailto:[EMAIL PROTECTED]> > > For additional commands, e-mail: > > <mailto:[EMAIL PROTECTED]> > > > > > > ************************************************************ > > The information in this email is confidential and may be > > legally privileged. It is intended solely for the addressee, > > and access by anyone else is unauthorized. > > > > If you are not the intended recipient, any disclosure, > > copying, distribution or any action taken or omitted to be > > taken in reliance on it, is prohibited and may be unlawful. > > > > If you believe that you have received this email in error, > > please advise us by calling (901) 385 3688, or emailing > > [EMAIL PROTECTED], and then delete this message > > and all copies and backups thereof. Thank you. > > ************************************************************ > > > > > > -- > > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > > > > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- Ed Robbins <[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
