Alias myapplications /your/path/here/tomcat/webapps/myapplications
slap that in your httpd.conf and you should be happy.
--
Eric Ricker
ericricker@usa.net
----- Original Message -----
From: "Andreas Hirner" <andreas@projektinter.net>
To: "Tomcat Users List" <tomcat-user@jakarta.apache.org>
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:tomcat-user-unsubscribe@jakarta.apache.org>
> For additional commands, e-mail:
<mailto:tomcat-user-help@jakarta.apache.org>
>
--
To unsubscribe, e-mail: <mailto:tomcat-user-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:tomcat-user-help@jakarta.apache.org>
|