RE: Remove apache tomcat default home page

2013-01-06 Thread anakando
Thanks chuck. I will try to update current tomcat apache version first. 

Thank you very much



--
View this message in context: 
http://tomcat.10.n6.nabble.com/Remove-apache-tomcat-default-home-page-tp4991774p4991872.html
Sent from the Tomcat - User mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



RE: Remove apache tomcat default home page

2013-01-04 Thread Caldarale, Charles R
> From: anakando [mailto:anaka...@yahoo.com] 
> Subject: Re: Remove apache tomcat default home page

> i cant locate any folder except myapps folder under /ROOT directory.

So besides having a horribly out of date version of Tomcat, the configuration 
is also illegal.  The webapp should not be under the ROOT directory, it should 
be under webapps, at the same hierarchy level as ROOT.  Whatever third party 
you obtained this software from is not demonstrating a high competence level so 
far.

You may be able to achieve your goal by removing all files under the ROOT 
directory other than the myapps directory, but given the broken nature of the 
original setup, that's not guaranteed.

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY 
MATERIAL and is thus for use only by the intended recipient. If you received 
this in error, please contact the sender and delete the e-mail and its 
attachments from all computers.


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: Remove apache tomcat default home page

2013-01-04 Thread Pid *
On 4 Jan 2013, at 04:39, ana kando  wrote:

> Hi all,
>
> I just installed a software that bundled with apache tomcat. I successfully 
> installed the software and can run the software at 
> http://localhost:8080/myapps/
>
> However, when i remove /myapps from browser, it will go directly to apache 
> tomcat default page. Cau you help me to remove this page from being display 
> when i go to http://localhost:8080/ ??
>
> Here is my tomcat version and operating system spec.
>
>
> Apache Tomcat 5.5.20

#fail

Go back to the vendor and ask them when they'll update Tomcat to a
supported version that is secure.


p


> windows server 64 bit

>
>
> I found an article from somewhere in the world to commented out these line at 
> file tomcat/conf/web.xml
>
>
> 
> jsp
> *.jsp
> 
> 
> jsp
> *.jspx
> 
>
> 
> index.html
> index.htm
> index.jsp
> 
>
>
> I also have commented out this line from file 
> tomcat/webapps/root/WEB-INF/web.xml
>
> 
> index.htm
> 
>
> But still not working. Tomcat default page still there.

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: Remove apache tomcat default home page

2013-01-04 Thread anakando
yes, Igor. I wanted to display 404 error page when go to localhost:8080. 

By the way, i cant locate any folder except myapps folder under /ROOT
directory.



--
View this message in context: 
http://tomcat.10.n6.nabble.com/Remove-apache-tomcat-default-home-page-tp4991774p4991782.html
Sent from the Tomcat - User mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: Remove apache tomcat default home page

2013-01-03 Thread Igor Cicimov
On Fri, Jan 4, 2013 at 3:39 PM, ana kando  wrote:

> Hi all,
>
> I just installed a software that bundled with apache tomcat. I
> successfully installed the software and can run the software at
> http://localhost:8080/myapps/
>
> However, when i remove /myapps from browser, it will go directly to apache
> tomcat default page. Cau you help me to remove this page from being display
> when i go to http://localhost:8080/ ??
>
> Here is my tomcat version and operating system spec.
>
>
> Apache Tomcat 5.5.20
> windows server 64 bit
>
>
> I found an article from somewhere in the world to commented out these line
> at file tomcat/conf/web.xml
>
>
> 
> jsp
> *.jsp
> 
> 
> jsp
> *.jspx
> 
>
> 
> index.html
> index.htm
> index.jsp
> 
>
>
> I also have commented out this line from
> file tomcat/webapps/root/WEB-INF/web.xml
>
> 
> index.htm
> 
>
> But still not working. Tomcat default page still there.


The default app is under /ROOT directory so delete/rename it if you want to
get read of it. By the way, what do you expect to see when going to
http://localhost:8080/ in that case? Instead of the default page you'll see
404 error page not found. Is that what you want?