| Author |
change from localhost
|
Malhar Barai
Author
Ranch Hand
Joined: Aug 17, 2001
Posts: 399
|
|
hi all, Well, servlet mapping could be done. i.e I was able to do te following Original Path: http://localhost:8080/gt/plan/index.jsp Which was mapped to : http://localhost:8080/plan But what i really need to do is: http://rnt.stat/plan OR http://rnt/plan How do I go about on this..?? Tried tweaking server.xml but no result. TIA MB
|
Malhar Barai
SOA & Java Book
|
 |
Mike Curwen
Ranch Hand
Joined: Feb 20, 2001
Posts: 3695
|
|
Umm... first you need to register a domain, and have it point to the IP address of the box on which you are runnin tomcat. If you're only running an intranet site, then you can get away with entering your domain into your internal DNS, and then it won't matter if the rest of the world doesn't see it. To get Tomcat to respond to port 80 (the default, so that you won't need to type :80) is set in server.xml. Just search in that file for the current port (8080) and replace it with 80. If you want it to respond to a certain 'named host', then configure a Host with that name, also in server.xml. I believe Tomcat needs a 'default' Host, so you will need at least two host entries now.
|
 |
 |
|
|
subject: change from localhost
|
|
|