Issue
I have Web app, which is deployed by instructions: open localhost:port/manager open .war file and click deploy. That's ok. Site is working through localhost:port/appname. So I want this address to connect from outside not only local PC. I need to specify URL for my site. How?
Solution
If you are trying to use it within local network then you can use your local IP address instead of localhost.
localip:port/appname
You can find the IP of your machine running ipconfig/ifconfig command on the command prompt.
If you want to open it over the internet then you need a public IP for this and associated configurations.This will be quite some task.
Answered By - Juned Ahsan