Hi,

> That may have solved the problem, but now you are limited to serving that
> application on that domain, only.  If you add anything more (another
domain
> name, another application, etc) you will want to understand how to use
> virtual hosts and the JkMount statement in httpd.conf.
> John

I guess John is right. The whole thing does not make any sense without the
entry in the virtual host section of httpd.conf. I simply forgot to include
it as well. Here it is.

#############################
#mod_jk link to tomcat
#
JkMount /*.jsp ajp13
JkMount /app/* ajp13
#JkMount /servlet/* ajp13

#prohibit access of WEB-INF
#
<Location "/WEB-INF/">
    AllowOverride None
    deny from all
</Location>

#prohibit access of META-INF
#
<Location "/META-INF/">
    AllowOverride None
    deny from all
</Location>
####################


> > -----Original Message-----
> > From: Andreas Hirner [mailto:[EMAIL PROTECTED]]
> > Sent: Friday, January 10, 2003 4:26 AM
> > To: Tomcat Users List
> > Subject: Re: Virtual hosting and mod_jk
> >
> >
> > Hi,
> >
> > Thank you for your help. Unfortunately I had already solved
> > the problem
> > myself.
> >
> > The only thing I did is uncomment the folowing line in the httpd.conf
> >
> > Include /usr/local/tomcat/conf/auto/mod_jk.conf
> >
> > and replace with the following block, so that the automatic
> > configuration is
> > disabled.
> >
> >  <IfModule mod_jk.c>
> >     JkWorkersFile "/usr/local/tomcat/conf/jk/workers.properties"
> >     JkLogFile "/usr/local/tomcat/logs/mod_jk.log"
> >     JkLogLevel error
> >  </IfModule>
> >
> > Cheers
> > Andreas
> >
> >
> > ----- Original Message -----
> > From: "Eric Ricker" <[EMAIL PROTECTED]>
> > To: "Tomcat Users List" <[EMAIL PROTECTED]>
> > Sent: Thursday, January 09, 2003 3:40 PM
> > Subject: Re: Virtual hosting and mod_jk
> >
> >
> > > Alias myapplications /your/path/here/tomcat/webapps/myapplications
> > >
> > > slap that in your httpd.conf and you should be happy.
> > > --
> > > Eric Ricker
> > > [EMAIL PROTECTED]
> > > ----- Original Message -----
> > > From: "Andreas Hirner" <[EMAIL PROTECTED]>
> > > To: "Tomcat Users List" <[EMAIL PROTECTED]>
> > > Sent: Thursday, January 09, 2003 5:43 AM
> > > Subject: Virtual hosting and mod_jk
> > >
> > >
> > > > Hello,
> > > >
> > > > I have successfully integrated tomcat (4.0.6) with apache
> > (1.3.26) on
> > > linux
> > > > and I am able to access a single virtual host (e.g. myapplication)
> > located
> > > > in the tomcat/webapps/myapplication directory using a url
> > like that:
> > > >
> > > > http://www.mydomain.com/myapplication/index.jsp
> > > >
> > > > However I would like to be able to access the files in
> > that directory
> > > > without using the path /myapplication, i.e.
> > > >
> > > > http://www.mydomain.com/index.jsp
> > > >
> > > > I have been playing around with the configuration files
> > but I have not
> > > been
> > > > able to alter the configuration according to my needs.
> > Does anybody know
> > > if
> > > > this is possible?
> > > >
> > > > Thanks in advance.
> > > >
> > > > Andreas
> > > >
> > > > PS: The relevant sections of httpd.conf and server.xml
> > are listed below.
> > > >
> > > >
> > > > http.conf
> > > > #########################
> > > > <VirtualHost *:80>
> > > >    ServerName meinfotoalbum.com
> > > >    ServerAlias www.meinfotoalbum.com
> > > >
> > > >    DocumentRoot /usr/local/tomcat/mywebapps/meinfoto
> > > >    <Directory "/usr/local/tomcat/mywebapps/meinfoto">
> > > >          DirectoryIndex index.htm index.html
> > > >         Options Indexes FollowSymLinks
> > > >    </Directory>
> > > >
> > > >     #mod_jk link to tomcat
> > > >    JkMount / ajp13
> > > >    JkMount /*jsp ajp13
> > > >
> > > >    #prohibit access of WEB-INF
> > > >     <Location "/WEB-INF/">
> > > >         AllowOverride None
> > > >         deny from all
> > > >    </Location>
> > > >
> > > >     #prohibit access of META-INF
> > > >    <Location "/META-INF/">
> > > >       AllowOverride None
> > > >        deny from all
> > > >    </Location>
> > > >
> > > >    </VirtualHost>
> > > > ################################
> > > > server.xml
> > > > ################################
> > > >   <Host name="meinfotoalbum.com" debug="0" appBase="mywebapps"
> > > > unpackWARs="true">
> > > >     <Alias>www.meinfotoalbum.com</Alias>
> > > >     <Logger className="org.apache.catalina.logger.FileLogger"
> > > >         directory="logs" prefix="meinfotoalbum_log." suffix=".txt"
> > > >         timestamp="true" />
> > > >     <Context path="" docBase="meinfoto" debug="0"
> > reloadable="false"/>
> > > >     <Listener
> > className="org.apache.ajp.tomcat4.config.ApacheConfig"
> > > >         append="true"  />
> > > >    </Host>
> > > >
> > > >
> > > >
> > > >
> > > > --
> > > > 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]>
> > >
> > >
> > >
> >
> >
> >
> > --
> > 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]>
>
>
>



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to