RE: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-30 Thread Jeffrey Janner
-Original Message- From: André Warnier [mailto:a...@ice-sa.com] Sent: Sunday, January 29, 2012 7:07 AM To: Tomcat Users List Subject: Re: Tomcat 6 - How to make an application available at www.mydomain.com John Renne wrote: On Jan 29, 2012, at 1:27 PM, André Warnier wrote:

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread Thomas Rohde
I'm running tomcat 6 behind apache. I currently have an application deployed as myApplication and it is available at http://www.mydomain.com/myApplication;. How can I make this application available at http://www.mydomain.com; without deploying it as ROOT.war? My server is running Ubuntu

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread Borut Hadžialić
Hi, the best way is to deploy your application to run inside tomcat without a context path - eg. to be available at http://localhost:8080/ instead of http://localhost:8080/myApplication and use your apache reverse proxying / virtual host as it is. Trying to strip application context in virtual

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread Borut Hadžialić
Just a small correction: 1. Make a file called ${catalina.base}/conf/Catalina/localhost/ROOT.xml that contains: instead of 1. Make a file called ${catalina.base}/conf/Catalina/localhost.ROOT.xml that contains: On 1/29/12, Borut Hadžialić borut.hadzia...@gmail.com wrote: Hi, the best way is

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread André Warnier
Thomas Rohde wrote: I'm running tomcat 6 behind apache. I currently have an application deployed as myApplication and it is available at http://www.mydomain.com/myApplication;. How can I make this application available at http://www.mydomain.com; without deploying it as ROOT.war? My server is

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread André Warnier
André Warnier wrote: Thomas Rohde wrote: I'm running tomcat 6 behind apache. I currently have an application deployed as myApplication and it is available at http://www.mydomain.com/myApplication;. How can I make this application available at http://www.mydomain.com; without deploying it as

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread Thomas Rohde
André Warnier wrote: Thomas Rohde wrote: I'm running tomcat 6 behind apache. I currently have an application deployed as myApplication and it is available at http://www.mydomain.com/myApplication;. How can I make this application available at http://www.mydomain.com; without deploying it

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread Pid
On 29/01/2012 10:46, Borut Hadžialić wrote: Hi, the best way is to deploy your application to run inside tomcat without a context path - eg. to be available at http://localhost:8080/ instead of http://localhost:8080/myApplication and use your apache reverse proxying / virtual host as it is.

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread Pid
On 29/01/2012 03:42, Caldarale, Charles R wrote: From: Dean Del Ponte [mailto:dean.delpo...@gmail.com] Subject: Tomcat 6 - How to make an application available at www.mydomain.com How can I make this application available at http://www.mydomain.com; without deploying it as ROOT.war? Just

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread Thomas Rohde
André Warnier wrote: Thomas Rohde wrote: I'm running tomcat 6 behind apache. I currently have an application deployed as myApplication and it is available at http://www.mydomain.com/myApplication;. How can I make this application available at http://www.mydomain.com; without deploying it

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread André Warnier
Thomas Rohde wrote: That is a good point. I will change my configuration to JkMount /myApplication/* tomcat Actually, you need 2 lines to cover all : JkMount /myApplication tomcat # for the index ? JkMount /myApplication/* tomcat# for the rest Or you can use the

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread John Renne
On Jan 29, 2012, at 4:35 AM, Dean Del Ponte wrote: I'm running tomcat 6 behind apache. I currently have an application deployed as myApplication and it is available at http://www.mydomain.com/myApplication;. How can I make this application available at http://www.mydomain.com; without

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread Thomas Rohde
Thomas Rohde wrote: That is a good point. I will change my configuration to JkMount /myApplication/* tomcat Actually, you need 2 lines to cover all : JkMount /myApplication tomcat # for the index ? JkMount /myApplication/* tomcat# for the rest Yes, I've

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread André Warnier
John Renne wrote: On Jan 29, 2012, at 4:35 AM, Dean Del Ponte wrote: I'm running tomcat 6 behind apache. I currently have an application deployed as myApplication and it is available at http://www.mydomain.com/myApplication;. How can I make this application available at

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread Mark Thomas
On 29/01/2012 11:06, Pid wrote: On 29/01/2012 03:42, Caldarale, Charles R wrote: From: Dean Del Ponte [mailto:dean.delpo...@gmail.com] Subject: Tomcat 6 - How to make an application available at www.mydomain.com How can I make this application available at http://www.mydomain.com; without

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread John Renne
On Jan 29, 2012, at 1:27 PM, André Warnier wrote: Sorry to appear to pounce on you, but putting a Context element in server.xml is discouraged, see here : http://tomcat.apache.org/tomcat-6.0-doc/config/context.html#Introduction No offense taken I am not myself an expert, so treat this

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread André Warnier
John Renne wrote: On Jan 29, 2012, at 1:27 PM, André Warnier wrote: Sorry to appear to pounce on you, but putting a Context element in server.xml is discouraged, see here : http://tomcat.apache.org/tomcat-6.0-doc/config/context.html#Introduction No offense taken I am not myself an expert,

RE: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-28 Thread Caldarale, Charles R
From: Dean Del Ponte [mailto:dean.delpo...@gmail.com] Subject: Tomcat 6 - How to make an application available at www.mydomain.com How can I make this application available at http://www.mydomain.com; without deploying it as ROOT.war? Just save yourself much grief and go ahead and deploy it