By default Helical Insight is accessible using IPaddress:portnumber/applicationextension like 192.169.2.164:8085/hi-ee/. In this document, we have tried to cover one of the use cases of providing sub-domain name instead of IP address or localhost like using login.abc.com rather than the actual IPaddress.
-
- Open the file server.xml which is present at the location given below:
Location:: \hi\apache-tomcat-7\conf
-
- Make the below mentioned configuration changes in order to redirect to the subdomain.
<Connector port="8085" protocol="HTTP/1.1" connectionTimeout="20000" maxThreads="30" redirectPort="8443" scheme="http" proxyName="login.yourDomain.com" proxyPort="80"/>
- In scheme you can provide http or https, In proxyName you can provide your domain, In proxyPort you can specify port number. For http it is 80 and https it is 443.
- Save the file and restart tomcat in order to apply changes.