Hello. Could someone please tell me, what can I do to give my application a simple URL. Right now I call my app with this URL - http://server_name:8080/abc I would like to call it with this URL - http://server_name/abc Any suggestion would be appreciated. Thanks.
Avinash Ramana
Greenhorn
Joined: Jul 31, 2006
Posts: 11
posted
0
You'll need to modify your server.xml to
Usually located here : $JBOSS/server/default/deploy/jboss-web.deployer/server.xml
Search for 8080
You'll find that it says something like ..
Change 8080 to 80
J2EE programmer for JTG..
Jayant Kumar
Greenhorn
Joined: Nov 03, 2007
Posts: 5
posted
0
Thank you Avinash. It worked fine.
Nilu Deshmukh
Greenhorn
Joined: Aug 03, 2009
Posts: 22
posted
0
Hi,
we are using Jboss 5.0. According to above post I tried to access the my application "URL"without port number but its not working.
I am using 80 port for HTTP request and 8443 for HTTPS .
Can you Please tell me how to access the application url without using port number.
I am also want to redirect all HTTP request to HTTPS at server side only.