• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

change from localhost

 
Author
Posts: 399
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
 
Ranch Hand
Posts: 3695
IntelliJ IDE Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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.
 
Now I am super curious what sports would be like if we allowed drugs and tiny ads.
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic