What port is tomcat listening to? If you have not changed this then it
would be 8080 (I believe) so you would type in a browser
http://www.test1-domain.com:8080 and it should bring up your site. To
keep from having to enter the port every time, change your server.xml to
listen to port 80 instead. 80 is the default http port.

Best regards,

Dean

-----Original Message-----
From: Roland Carlsson [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 12, 2004 2:24 PM
To: Tomcat Users List
Subject: Multiple Host (no apache or iis)

Hi!
I have tried to search for this but all hits seems to be about getting
tomcat to work together with apache or iis.

I can't figure out why my test1-domain doesn't answer at all. All I gets
is
a 400-error. What bother me the most is that there is nothing in the
catalina.out log that indicats that there are something wrong so I don't
even know where to start look.

I post the <Host>-part of my server.xml below.

Thanks in advance
Roland Carlsson


<Host name="test1.mydomain.com" debug="0" appBase="webapps:"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
<Valve className="org.apache.catalina.valves.AccessLogValve"
directory="logs" prefix="test1_access_log." suffix=".txt"
pattern="combined" resolveHosts="false"/>
<Logger className="org.apache.catalina.logger.FileLogger"
directory="logs" prefix="test1.log." suffix=".txt"
timestamp="true"/>
</Host>
<Host name="localhost" debug="0" appBase="webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">

<Valve className="org.apache.catalina.valves.AccessLogValve"
directory="logs" prefix="localhost_access_log." suffix=".txt"
pattern="combined" resolveHosts="false"/>
<Logger className="org.apache.catalina.logger.FileLogger"
directory="logs" prefix="localhost_log." suffix=".txt"
timestamp="true"/>
</Host>



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




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

Reply via email to