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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

how to remove 8080 from URL before deployment

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
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.
 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
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
 
Jayant Kumar
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Thank you Avinash. It worked fine.
 
Greenhorn
Posts: 22
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
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.

Thanks ,

Nil
 
author
Posts: 5856
7
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Nilu, please do not wake the zombies.

Ask your question in a new post.
 
Consider Paul's rocket mass heater.
    Bookmark Topic Watch Topic
  • New Topic