I have deployed a Spring Boot WAR file on tomcat 9 server and I am able to access the rest endpoints with HTTP and using the ip address and port as shown in the example below,
http://10.197.126.138:9195/url/y
But when I am trying the same with the server’s registered domain url as shown in the example below, it is not working.
https://subdomain.example.com/url/y
We do have other WAR files deployed on the same tomcat server, and those are accessible using URLs like above.
What might be the issue here?