Virtual Host in Tomcat 4.1.29

2005-04-13 Thread Darryl Wilburn
I'm going to try to keep this short and to the point. I'm trying to configure a virtual host on a 4.1.29 server with no luck. I've successfully configured it on 5.5.7 which seems to have better facilities for configuring VH's. I've configured the server.xml to have an additional host entry as

Re: Virtual Host in Tomcat 4.1.29

2005-04-13 Thread Darryl Wilburn
Disregard... I think I've got it! Darryl __ Do you Yahoo!? Yahoo! Small Business - Try our new resources site! http://smallbusiness.yahoo.com/resources/ - To unsubscribe,

Apache, virtual host and Tomcat

2005-04-04 Thread david joffrin
Reposting as the postmaster is complaining... Hi, I would like to run the following configurations with only one machine: 3 domains. Let's name them, www.domain1.com and sthg.domain2.com and www.domain2.com. www.domain1.com runs on 80 using apache and php www.domain2.com runs on 8080 using tomcat,

Apache, virtual host and Tomcat

2005-04-03 Thread david joffrin
Hi, I would like to run the following configurations with only one machine: 3 domains. Let's name them, www.domain1.com and sthg.domain2.com and www.domain2.com. www.domain1.com runs on 80 using apache and php www.domain2.com runs on 8080 using tomcat, mysql... sthg.domain2.com runs on 443

Apache, virtual host and Tomcat

2005-04-03 Thread david joffrin
Hi, I would like to run the following configurations with only one machine: 3 domains. Let's name them, www.domain1.com and sthg.domain2.com and www.domain2.com. www.domain1.com runs on 80 using apache and php www.domain2.com runs on 8080 using tomcat, mysql... sthg.domain2.com runs on 443 using

virtual host in tomcat 4?

2004-03-09 Thread Forte, Graham
Go easy, first post. I have a webapp that requires SSL only. I am therefore limited by my company to port 8443, all other ports are blocked(including 8080). If I have a domain called www.myNewDomainName.com and the actual URL for the app is /webapps/mySSLApp/index.jsp how and where can I make

RE: virtual host in tomcat 4?

2004-03-09 Thread SH Solutions
Hi when the user types in www.myNewDomainName.com ... they try to reach you server on port 80 (!!) which is blocked. If you mean: when the user types in https://www.myNewDomainName.com; they are redirected to https://myServerName:8443/mySSLApp/index.jsp ? This is possible. Simply have your

RE: virtual host in tomcat 4?

2004-03-09 Thread Forte, Graham
Solutions [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 09, 2004 8:09 AM To: 'Tomcat Users List' Subject: RE: virtual host in tomcat 4? Hi when the user types in www.myNewDomainName.com ... they try to reach you server on port 80 (!!) which is blocked. If you mean: when the user types in https

RE: virtual host in tomcat 4?

2004-03-09 Thread SH Solutions
Hi Can I change the server.xml file to force http listening on 8443 instead of 8080? Or will this cause a conflict with SSL listening on the same port? No. 1 port 1 service. If a user types in www.myNewDomainName.com is it port 80 that tomcat4 listens on or is it 8080? No. This has nothing

RE: virtual host in tomcat 4?

2004-03-09 Thread Forte, Graham
Solutions [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 09, 2004 8:42 AM To: 'Tomcat Users List' Subject: RE: virtual host in tomcat 4? Hi Can I change the server.xml file to force http listening on 8443 instead of 8080? Or will this cause a conflict with SSL listening on the same port? No. 1

RE: virtual host in tomcat 4?

2004-03-09 Thread SH Solutions
Hi So if I add the following somewhere in my server.xml file the user that types www.aa.com will be pointed to http://myipaddress:8080/webapps/aa/index.jsp? No. As I have already said, there is NOTHING, you can to to archieve this. The whole point is, that browsers assume any website running

RE: virtual host in tomcat 4?

2004-03-09 Thread Forte, Graham
requests www.myDomainName.com they will be directed to /webapps/myWebApp/index.jsp? Is there anything else I need to do? Thanks! -Original Message- From: SH Solutions [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 09, 2004 9:22 AM To: 'Tomcat Users List' Subject: RE: virtual host in tomcat 4

RE: virtual host in tomcat 4?

2004-03-09 Thread SH Solutions
Hi So if I get port 80 opened up ... Okay, we are going the right way... I can add the following entry to server.xml Host name=www.myDomainName.com debug=0 appBase=webapps/myWebApp ... No. [The following is taken from manual, not tested myself.] appBase just gives the folder name for all

Re: virtual host in tomcat 4?

2004-03-09 Thread Ankur Shah
SH Solutions wrote: Hi So if I add the following somewhere in my server.xml file the user that types www.aa.com will be pointed to http://myipaddress:8080/webapps/aa/index.jsp? No. As I have already said, there is NOTHING, you can to to archieve this. Yes he can. If the hosting

RE: virtual host in tomcat 4?

2004-03-09 Thread SH Solutions
Hi Yes he can. If the hosting company for aa.com is kind enough to allow him to URI forward his domain to http://myipaddress:8080 or 8443 (that is if he has port 8443 visible from outside, which I think he said he does.), he'll almost get what he wants. Which would in fact be what I called to

RE: virtual host in tomcat 4?

2004-03-09 Thread Forte, Graham
, 2004 11:41 AM To: Tomcat Users List Subject: Re: virtual host in tomcat 4? SH Solutions wrote: Hi So if I add the following somewhere in my server.xml file the user that types www.aa.com will be pointed to http://myipaddress:8080/webapps/aa/index.jsp? No. As I have already said

Re: virtual host in tomcat 4?

2004-03-09 Thread Ankur Shah
SH Solutions wrote: Hi Yes he can. If the hosting company for aa.com is kind enough to allow him to URI forward his domain to http://myipaddress:8080 or 8443 (that is if he has port 8443 visible from outside, which I think he said he does.), he'll almost get what he wants. Which would in

[OT] Re: virtual host in tomcat 4?

2004-03-09 Thread Ankur Shah
Forte, Graham wrote: This is getting a little off-topic, but here goes: I think I need to take baby steps. My goal right now is to be able to access my development machine from another machine on the LAN. Right now I have to type the following to access my dev machine from another LAN box:

RE: virtual host in tomcat 4?

2004-03-09 Thread Forte, Graham
Users List' Subject: RE: virtual host in tomcat 4? Hi Yes he can. If the hosting company for aa.com is kind enough to allow him to URI forward his domain to http://myipaddress:8080 or 8443 (that is if he has port 8443 visible from outside, which I think he said he does.), he'll almost get what

RE: virtual host in tomcat 4?

2004-03-09 Thread SH Solutions
Hi OK what if I register the domain to point to our companies proxy server ip address and then have the proxy server URI forward to https://myMachine:8443/mySSLApp/logon.jsp ? Not exactly, but similar. Main precondition: Your proxy must be reachable from the outside world - which is usually not

RE: virtual host in tomcat 4?

2004-03-09 Thread SH Solutions
Hi I think I need to take baby steps. My goal right now is to be able to access my development machine from another machine on the LAN. Right now I have to type the following to access my dev machine from another LAN box: http://myMachineName:8080/myWebApp/logon.jsp So far so good. I want

Virtual host on Tomcat 3.3

2003-10-27 Thread lbc
Hi list I need to host a number of web domains on my Tomcat 3.3 server, and would appreciate if some could point me to a description of what I need to add to the server.xml file. Any help is greatly appreciated. Kind regards Lars -- Lars Ballieu Christensen Sensus ApS - European

USING SSL with VIRTUAL HOST and TOMCAT STANDALONE

2002-10-25 Thread Donie Kelly
Hi all I'm trying to configure my server.xml with multiple hosts on Tomcat 4.0.4 and I want to use a different SSL certificate for each host entry. I AM NOT USING APACHE! JUST TOMCAT STANDALONE (sorry for shouting but this is important) Does anybody have an example of how to do

virtual host for tomcat

2002-10-01 Thread unplug
Hi all, Say I have the following folder. $TOMCAT_HOME/webapps/examples $TOMCAT_HOME/webapps/samples I want to set 2 virtual hosts such that they will serve any JSP as follow. http://examples.abc.com/index.jsp -- $TOMCAT_HOME/webapps/examples/index.jsp http://samples.abc.com/index.jsp--

Re: virtual host for tomcat

2002-10-01 Thread Robert L Sowders
to Tomcat Users List To: tomcat-user [EMAIL PROTECTED] cc: Subject:virtual host for tomcat Hi all, Say I have the following folder. $TOMCAT_HOME/webapps/examples $TOMCAT_HOME/webapps/samples I want to set 2 virtual hosts such that they will serve any JSP

apache virtual host with tomcat virtual host

2002-08-27 Thread Jaco . Smuts
Hello there I have working apache 1.3 connecting to tomcat 4.04 with different virtual hosts (apache httpd) connecting to different tomcat instances. I would like to combine two of these tomcat instances into one tomcat instance (using one server element) but more than one host element. I seem

Minimal Virtual Host setup Tomcat 4

2002-02-18 Thread Edward Elsics
Hi, What's the minimum I need to do with configurations and directory setups to make a virtual host for Tomcat 4? I tried the following in server.xml and http://virtualhost.mydomainx.com got sent to the default webapp instead of $CATALINA_HOME/vh1: Host name=virtualhost.mydomainx.com debug=0

Quick guide to a virtual host in Tomcat (Was: server.xml and Catalina)

2002-01-27 Thread Sriram N
--- Micael Padraig Og mac Grene [EMAIL PROTECTED] wrote: I sure am having trouble getting an example of server.xml. I bathed! Is the 4.0 server.xml structured about like the 3.2 was? I have looked at the documentation, but I am practically oriented. If someone would show me one copy

Configuring virtual host on Tomcat 4.0

2001-12-06 Thread Wayne Hefner
I am attempting to configure Tomcat 4.0 and Apache 1.3 to work with virtual hosts. I have been able to get the WARP connector working with the default apps in tomcat. However when I configure for a virtual host going to a different app base it communicates with tomcat and gives me a listing of

[Fwd: Virtual host in Tomcat 3.2.1 thros NullPointer]

2001-04-23 Thread Neil Aggarwal
Hello: Has anyone seen this problem Thanks, Neil. -- Neil Aggarwal JAMM Consulting, Inc. -- (972) 612-6056, http://www.JAMMConsulting.com Custom Internet Development -- Java, JSP, servlets, databases Hello: I am trying to set-up Tomcat 3.2.1 as a standalone servlet container for

RE: [Fwd: Virtual host in Tomcat 3.2.1 thros NullPointer]

2001-04-23 Thread Danny Angus
Context path= should be Context path=/ for hits to the path root -Original Message- From: Neil Aggarwal [mailto:[EMAIL PROTECTED]] Sent: Monday, April 23, 2001 5:17 PM To: tomcat users list Subject: [Fwd: Virtual host in Tomcat 3.2.1 thros NullPointer] Hello: Has anyone

Re: [Fwd: Virtual host in Tomcat 3.2.1 thros NullPointer]

2001-04-23 Thread Neil Aggarwal
host in Tomcat 3.2.1 thros NullPointer] Hello: Has anyone seen this problem Thanks, Neil. -- Neil Aggarwal JAMM Consulting, Inc. -- (972) 612-6056, http://www.JAMMConsulting.com Custom Internet Development -- Java, JSP, servlets, databases -- Neil Aggarwal JAMM

Virtual host in Tomcat 3.2.1 thros NullPointer

2001-04-19 Thread Neil Aggarwal
Hello: I am trying to set-up Tomcat 3.2.1 as a standalone servlet container for virtual hosts. I downloaded the tomcat 3.2.1 binary distribution, dearchived it, and then made these modifications to server.xml: 1. Changed the HttpContentHandler to port 80 so that it would repond to