Hi All,

I'm not sure where to post this question. I already have a deployed apps in Joget but currently the URL is in IP. for example, 123.456.678/jw/web/.....

How do I configure the URL to point to a sub domain url like http://abc.yahoo.com/jw/web/.... 

Appreciate your expertise advise on this.

Thanks.

  • No labels

2 Comments

  1. You will need to set your domain DNS, add a A record to your IP first.

    Then when you browse to your domain, it will point to the IP set.

    In your server with that IP, you will then need to handle the incoming traffic routing. Typically, if your Tomcat is already running at port 80, it should work right away.

    If needed to, you can configure/add host in your tomcat's server.xml file shall you decide to route different subdomain/domain differently.

    References

    Cheers

  2. Thank you for your reply, Walter.

    I've managed to create the A record and currently the sub domain is pointing to the site. But, it still appears the IP address. 

    For example, when i typed my sub-domain http://xxx.abc.com it will go to http://123.56.789/jw/web/userview. but if i typed http://xxx.abc.com/jw/web/userview/ it will not show the IP. 

    How do i configure to make my user to only type http://xxx.abc.com and it will go directly to http://xxx.abc.com/jw/web/userview/.

    Thank you.